Gentoo Archives: gentoo-commits

From: "Paweł Hajdan" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/arch-tools:new-pybugz commit in: /
Date: Wed, 01 Aug 2012 07:16:32
Message-Id: 1343805109.64ebf043ef6bd7481b3701a6e69735ca618fd2f9.phajdan.jr@gentoo
1 commit: 64ebf043ef6bd7481b3701a6e69735ca618fd2f9
2 Author: Pawel Hajdan, Jr <phajdan.jr <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 07:11:49 2012 +0000
4 Commit: Paweł Hajdan <phajdan.jr <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 07:11:49 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/arch-tools.git;a=commit;h=64ebf043
7
8 Fix an exception when best_version was not a string
9
10 ---
11 stabilization-candidates.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/stabilization-candidates.py b/stabilization-candidates.py
15 index 77a9a74..a5724ff 100755
16 --- a/stabilization-candidates.py
17 +++ b/stabilization-candidates.py
18 @@ -89,7 +89,7 @@ if __name__ == "__main__":
19 # Only consider the best version for stabilization.
20 # It's usually better tested, and often maintainers refuse
21 # to stabilize anything else, e.g. bug #391607.
22 - best_candidate = candidates[0]
23 + best_candidate = str(candidates[0])
24
25 pv = portage.versions.catsplit(best_candidate)[1]
26 try: