summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-12-29 21:23:27 +0000
committerZac Medico <zmedico@gentoo.org>2008-12-29 21:23:27 +0000
commitdc77088d2df107e4c3e23e38f25fe5a1da12b521 (patch)
tree5429f9b1d3055255e771fce7a1f9d20bbb57d321 /bin/repoman
parentBug #253002 - Add a new variable.invalidchar check for metadata variables that (diff)
downloadportage-idfetch-dc77088d2df107e4c3e23e38f25fe5a1da12b521.tar.gz
portage-idfetch-dc77088d2df107e4c3e23e38f25fe5a1da12b521.tar.bz2
portage-idfetch-dc77088d2df107e4c3e23e38f25fe5a1da12b521.zip
Fix 'TypeError: not all arguments converted during string formatting'
triggered by repoman -v. Thanks to Javier Villavicencio <the_paya@g.o> for reporting. svn path=/main/trunk/; revision=12366
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/repoman b/bin/repoman
index b2ae0a81..a2d7d8bc 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1832,8 +1832,8 @@ else:
print "%s have headers that will change." % green(str(len(myheaders)))
print "* Files with headers will cause the " + \
"manifests to be made and recommited."
- logging.info("myupdates:", str(myupdates))
- logging.info("myheaders:", str(myheaders))
+ logging.info("myupdates: %s", myupdates)
+ logging.info("myheaders: %s", myheaders)
commitmessage = options.commitmsg
if options.commitmsgfile: