summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-02-22 12:00:31 +0000
committerZac Medico <zmedico@gentoo.org>2007-02-22 12:00:31 +0000
commit1d02d229f2cf55c70466694cfc06e6cfb9e019cb (patch)
treeb578a365bf6e60de7b579be699893e9904e63691 /bin
parent87a870896f0024b6510f0730f9862b9ca06fc626 (diff)
downloadportage-1d02d229f2cf55c70466694cfc06e6cfb9e019cb.tar.gz
portage-1d02d229f2cf55c70466694cfc06e6cfb9e019cb.tar.bz2
portage-1d02d229f2cf55c70466694cfc06e6cfb9e019cb.zip
Avoid a TypeError when commitmessagefile is None. (trunk r6028:6029)
svn path=/main/branches/2.1.2/; revision=6030
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index 62bde5de9..8d7e1346d 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1745,7 +1745,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")