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 17739138330 for ; Tue, 11 Oct 2016 18:54:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1893EE0C2A; Tue, 11 Oct 2016 18:54:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2F65E0C2A for ; Tue, 11 Oct 2016 18:54:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 380D9341659 for ; Tue, 11 Oct 2016 18:54:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF92C2F2 for ; Tue, 11 Oct 2016 18:54:07 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1476211933.8adb8d6cc14a2fdbdc6640c8d8ecc0e7da2443c9.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: repoman/pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: repoman/pym/repoman/main.py X-VCS-Directories: repoman/pym/repoman/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 8adb8d6cc14a2fdbdc6640c8d8ecc0e7da2443c9 X-VCS-Branch: master Date: Tue, 11 Oct 2016 18:54:07 +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: f8f65abd-a224-4b61-a4c4-b74b08bf8ff8 X-Archives-Hash: bd90014d2ec7e5251c5fe4062d44a4db commit: 8adb8d6cc14a2fdbdc6640c8d8ecc0e7da2443c9 Author: Brian Dolbec gentoo org> AuthorDate: Mon Sep 19 04:15:53 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Oct 11 18:52:13 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=8adb8d6c repoman/main.py: Fix version output string to say Repoman Signed-off-by: Brian Dolbec gentoo.org> repoman/pym/repoman/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repoman/pym/repoman/main.py b/repoman/pym/repoman/main.py index ad213e3..2c9445a 100755 --- a/repoman/pym/repoman/main.py +++ b/repoman/pym/repoman/main.py @@ -62,7 +62,7 @@ def repoman_main(argv): sys.argv, qahelp, repoman_settings.get("REPOMAN_DEFAULT_OPTS", "")) if options.version: - print("Portage", portage.VERSION) + print("Repoman", portage.VERSION) sys.exit(0) logger = logging.getLogger()