From 94555e919be9640aea08ad096c25cddf3f67a6d0 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Wed, 1 Nov 2017 01:09:58 +0200 Subject: gnome: Put "Stable" in the titles when it's a stable tree report --- modules/gnome_output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gnome_output.py b/modules/gnome_output.py index 6f0f6be..d406d16 100644 --- a/modules/gnome_output.py +++ b/modules/gnome_output.py @@ -54,11 +54,11 @@ class Output: lines.append('') lines.append("") lines.append('') - lines.append('Gnome ' + clioptions_module.Options().get_arguments().release_number + ' Progress') + lines.append('Gnome ' + clioptions_module.Options().get_arguments().release_number + (' Stable' if clioptions_module.Options().options.stable else '') + ' Progress') lines.append('') lines.append('') lines.append("") - lines.append("

Gnome " + clioptions_module.Options().get_arguments().release_number + " Progress

") + lines.append("

Gnome " + clioptions_module.Options().get_arguments().release_number + (' Stable' if clioptions_module.Options().options.stable else '') + " Progress

") lines.append("contact " + os.environ["USER"] + "@gentoo.org if anything is not correct
") lines.append("Generated UTC date: " + current_time + "
") -- cgit v1.2.3-65-gdbad