diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2007-07-30 10:47:43 -0400 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2007-07-30 10:47:43 -0400 |
commit | 1593e9300da22446f601fb9158a3b45186ec1f33 (patch) | |
tree | 04c2f4e04ba10891aaf0cc97c1b5dd9ff171c8ee /becommands | |
parent | 6219c38d9c2bd6a8eeaf320ed0f1fa4bdf1b1fba (diff) | |
download | bugseverywhere-1593e9300da22446f601fb9158a3b45186ec1f33.tar.gz |
Assume commit messages are in utf-8 for now...
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/comment.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/becommands/comment.py b/becommands/comment.py index b211cf6..e3a1d93 100644 --- a/becommands/comment.py +++ b/becommands/comment.py @@ -56,6 +56,7 @@ def execute(args): "No comment supplied, and EDITOR not specified.") if body is None: raise cmdutil.UserError("No comment entered.") + body = body.decode('utf-8') else: body = args[1] if not body.endswith('\n'): |