diff options
author | W. Trevor King <wking@drexel.edu> | 2009-08-03 19:27:00 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-08-03 19:27:00 -0400 |
commit | 3b96373f9ae82deb5b18ab8aae58ab39a0a7764e (patch) | |
tree | ea8675afea99d3b87820cffd0c0a9b4df2f7abc4 /becommands/comment.py | |
parent | 5aec92f4016ceb29bf502ca15be2f43ca748da76 (diff) | |
download | bugseverywhere-3b96373f9ae82deb5b18ab8aae58ab39a0a7764e.tar.gz |
Ssupport for UTF-8 in "be comment" calls to EDITOR/VISUAL.
Diffstat (limited to 'becommands/comment.py')
-rw-r--r-- | becommands/comment.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/becommands/comment.py b/becommands/comment.py index 69e3a41..9a614b2 100644 --- a/becommands/comment.py +++ b/becommands/comment.py @@ -104,7 +104,6 @@ def execute(args, manipulate_encodings=True): raise cmdutil.UserError, "No comment supplied, and EDITOR not specified." if body is None: raise cmdutil.UserError("No comment entered.") - body = body.decode('utf-8') elif args[1] == '-': # read body from stdin binary = not (options.content_type == None or options.content_type.startswith("text/")) |