From: Zac Medico Date: Thu, 22 Feb 2007 12:00:31 +0000 (-0000) Subject: Avoid a TypeError when commitmessagefile is None. (trunk r6028:6029) X-Git-Tag: v2.1.2.1~47 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1d02d229f2cf55c70466694cfc06e6cfb9e019cb;p=portage.git Avoid a TypeError when commitmessagefile is None. (trunk r6028:6029) svn path=/main/branches/2.1.2/; revision=6030 --- 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")