From: Zac Medico Date: Thu, 15 Jul 2010 03:32:33 +0000 (-0700) Subject: Use b'foo' instead of _unicode_encode() where appropriate. X-Git-Tag: v2.2_rc68~496 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e16858758bcde95a0d9632b017f17676eea66ba5;p=portage.git Use b'foo' instead of _unicode_encode() where appropriate. --- diff --git a/bin/repoman b/bin/repoman index 65d076adc..235d4f079 100755 --- a/bin/repoman +++ b/bin/repoman @@ -2431,7 +2431,7 @@ else: fd, commitmessagefile = tempfile.mkstemp(".repoman.msg") mymsg = os.fdopen(fd, "wb") mymsg.write(_unicode_encode(commitmessage)) - mymsg.write("\n (Unsigned Manifest commit)") + mymsg.write(b"\n (Unsigned Manifest commit)") mymsg.close() commit_cmd = [vcs] @@ -2536,9 +2536,9 @@ else: # strip the closing parenthesis mymsg.write(_unicode_encode(commitmessage[:-1])) if signed: - mymsg.write(_unicode_encode(", signed Manifest commit)")) + mymsg.write(b", signed Manifest commit)") else: - mymsg.write(_unicode_encode(", unsigned Manifest commit)")) + mymsg.write(b", unsigned Manifest commit)") mymsg.close() commit_cmd = []