From: Zac Medico Date: Thu, 22 Feb 2007 11:59:58 +0000 (-0000) Subject: Avoid a TypeError when commitmessagefile is None. X-Git-Tag: v2.2_pre1~1668 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=13b0c3cf9890b163a96ff3cfa8d00b072b48dcc1;p=portage.git Avoid a TypeError when commitmessagefile is None. svn path=/main/trunk/; revision=6029 --- 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")