diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-07-14 20:32:33 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-07-14 20:32:33 -0700 |
commit | e16858758bcde95a0d9632b017f17676eea66ba5 (patch) | |
tree | ba52a447f412980b96c4074b98ce25d2171c73f8 | |
parent | 36a01afb7224d34c4a6dfb46abf96a685a032fd4 (diff) | |
download | portage-e16858758bcde95a0d9632b017f17676eea66ba5.tar.gz portage-e16858758bcde95a0d9632b017f17676eea66ba5.tar.bz2 portage-e16858758bcde95a0d9632b017f17676eea66ba5.zip |
Use b'foo' instead of _unicode_encode() where appropriate.
-rwxr-xr-x | bin/repoman | 6 |
1 files 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 = [] |