From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E0FD413888F for ; Tue, 6 Oct 2015 15:31:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7174A21C045; Tue, 6 Oct 2015 15:31:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C1CB21C02A for ; Tue, 6 Oct 2015 15:31:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ABCDB340662 for ; Tue, 6 Oct 2015 15:31:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE1E2AD6 for ; Tue, 6 Oct 2015 15:31:26 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1444142229.d0a0de7291f68220daded2dee8cb6e8fbbc2fee0.vapier@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/version.py X-VCS-Directories: catalyst/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: d0a0de7291f68220daded2dee8cb6e8fbbc2fee0 X-VCS-Branch: master Date: Tue, 6 Oct 2015 15:31:26 +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: cbfe84e6-bb73-4b50-80a5-e1df2b1a3938 X-Archives-Hash: 3efa8cc5fefb154acb3c0592759a3b81 commit: d0a0de7291f68220daded2dee8cb6e8fbbc2fee0 Author: Mike Frysinger gentoo org> AuthorDate: Tue Oct 6 14:37:09 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Oct 6 14:37:09 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=d0a0de72 version: use the passed in value The get_git_version function takes a |version| argument, but doesn't actually use it, which makes calls to the function with a version do nothing. Tweak the function to use the arg in the way it looks like it intended. catalyst/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/version.py b/catalyst/version.py index 5deb4d7..3b82988 100644 --- a/catalyst/version.py +++ b/catalyst/version.py @@ -31,7 +31,7 @@ def get_git_version(version=__version__): s = ('vcs version %s, date %s' % (version_info['rev'], version_info['date'])) - _ver = 'Catalyst %s\n%s' % (__version__, s) + _ver = 'Catalyst %s\n%s' % (version, s) return _ver