aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2007-07-30 10:47:43 -0400
committerAaron Bentley <abentley@panoramicfeedback.com>2007-07-30 10:47:43 -0400
commit1593e9300da22446f601fb9158a3b45186ec1f33 (patch)
tree04c2f4e04ba10891aaf0cc97c1b5dd9ff171c8ee
parent6219c38d9c2bd6a8eeaf320ed0f1fa4bdf1b1fba (diff)
downloadbugseverywhere-1593e9300da22446f601fb9158a3b45186ec1f33.tar.gz
Assume commit messages are in utf-8 for now...
-rw-r--r--becommands/comment.py1
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'):