From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 616921396D9 for ; Tue, 31 Oct 2017 23:12:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72BC0E0BE7; Tue, 31 Oct 2017 23:12:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52D17E0BE7 for ; Tue, 31 Oct 2017 23:12:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34547341751 for ; Tue, 31 Oct 2017 23:12:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B487C829 for ; Tue, 31 Oct 2017 23:12:01 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1509491492.94555e919be9640aea08ad096c25cddf3f67a6d0.leio@gentoo> Subject: [gentoo-commits] proj/gentoo-bumpchecker:master commit in: modules/ X-VCS-Repository: proj/gentoo-bumpchecker X-VCS-Files: modules/gnome_output.py X-VCS-Directories: modules/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 94555e919be9640aea08ad096c25cddf3f67a6d0 X-VCS-Branch: master Date: Tue, 31 Oct 2017 23:12:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6cb51af7-1930-421a-9bbe-812a966591db X-Archives-Hash: 26b54951148eee2b8b801545682f7bc5 commit: 94555e919be9640aea08ad096c25cddf3f67a6d0 Author: Mart Raudsepp gentoo org> AuthorDate: Tue Oct 31 23:09:58 2017 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Tue Oct 31 23:11:32 2017 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bumpchecker.git/commit/?id=94555e91 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 + "
")