diff options
Diffstat (limited to 'libbe/editor.py')
-rw-r--r-- | libbe/editor.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbe/editor.py b/libbe/editor.py index 93144b8..8f2bdbf 100644 --- a/libbe/editor.py +++ b/libbe/editor.py @@ -62,7 +62,8 @@ def editor_string(comment=None, encoding=None): fhandle, fname = tempfile.mkstemp() try: if comment is not None: - os.write(fhandle, '\n'+comment_string(comment)) + cstring = u'\n'+comment_string(comment) + os.write(fhandle, cstring.encode(encoding)) os.close(fhandle) oldmtime = os.path.getmtime(fname) os.system("%s %s" % (editor, fname)) |