From e16858758bcde95a0d9632b017f17676eea66ba5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 14 Jul 2010 20:32:33 -0700 Subject: Use b'foo' instead of _unicode_encode() where appropriate. --- bin/repoman | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 = [] -- cgit v1.2.3-1-g7c22