summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-02-22 11:59:58 +0000
committerZac Medico <zmedico@gentoo.org>2007-02-22 11:59:58 +0000
commit13b0c3cf9890b163a96ff3cfa8d00b072b48dcc1 (patch)
tree2565e53afb0363e2c00ddb2b174fadc460f8a6fe /bin
parent4ac746a2013149902a5937a981be80c54888f7ed (diff)
downloadportage-13b0c3cf9890b163a96ff3cfa8d00b072b48dcc1.tar.gz
portage-13b0c3cf9890b163a96ff3cfa8d00b072b48dcc1.tar.bz2
portage-13b0c3cf9890b163a96ff3cfa8d00b072b48dcc1.zip
Avoid a TypeError when commitmessagefile is None.
svn path=/main/trunk/; revision=6029
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index c34df1b8d..cd02e73ba 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1746,7 +1746,7 @@ else:
if manifest_commit_required or signed:
if "--pretend" in myoptions:
- print "(/usr/bin/cvs -q commit -F "+commitmessagefile+")"
+ print "(/usr/bin/cvs -q commit -F commitmessagefile)"
else:
fd, commitmessagefile = tempfile.mkstemp(".repoman.msg")
mymsg = os.fdopen(fd, "w")