summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-01-12 08:08:46 +0000
committerZac Medico <zmedico@gentoo.org>2009-01-12 08:08:46 +0000
commitc820979063b3f6d90ccfc129baf078867bfc0d08 (patch)
tree6c0191b759f7816c3df05f99e4d68a1ce08e615f /bin/repoman
parent8adbdf98dac40956ae136ca10d628a81e82be540 (diff)
downloadportage-c820979063b3f6d90ccfc129baf078867bfc0d08.tar.gz
portage-c820979063b3f6d90ccfc129baf078867bfc0d08.tar.bz2
portage-c820979063b3f6d90ccfc129baf078867bfc0d08.zip
Fix 'TypeError: not all arguments converted during string formatting'
triggered by repoman -v. Thanks to Javier Villavicencio <the_paya@g.o> for reporting. (trunk r12366) svn path=/main/branches/2.1.6/; revision=12437
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 19f26ec68..1e1bc229a 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: