Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12366 - main/trunk/bin
Date: Mon, 29 Dec 2008 21:23:29
Message-Id: E1LHPaB-000251-Eg@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-12-29 21:23:27 +0000 (Mon, 29 Dec 2008)
3 New Revision: 12366
4
5 Modified:
6 main/trunk/bin/repoman
7 Log:
8 Fix 'TypeError: not all arguments converted during string formatting'
9 triggered by repoman -v. Thanks to Javier Villavicencio <the_paya@g.o>
10 for reporting.
11
12
13 Modified: main/trunk/bin/repoman
14 ===================================================================
15 --- main/trunk/bin/repoman 2008-12-29 19:39:46 UTC (rev 12365)
16 +++ main/trunk/bin/repoman 2008-12-29 21:23:27 UTC (rev 12366)
17 @@ -1832,8 +1832,8 @@
18 print "%s have headers that will change." % green(str(len(myheaders)))
19 print "* Files with headers will cause the " + \
20 "manifests to be made and recommited."
21 - logging.info("myupdates:", str(myupdates))
22 - logging.info("myheaders:", str(myheaders))
23 + logging.info("myupdates: %s", myupdates)
24 + logging.info("myheaders: %s", myheaders)
25
26 commitmessage = options.commitmsg
27 if options.commitmsgfile: