diff --git a/jrnl/util.py b/jrnl/util.py index d25fda32..daeee46c 100644 --- a/jrnl/util.py +++ b/jrnl/util.py @@ -126,7 +126,7 @@ def get_text_from_editor(config, template=""): with codecs.open(tmpfile, 'w', "utf-8") as f: if template: f.write(template) - subprocess.call(config['editor'].split() + [tmpfile]) + subprocess.call(config['editor'].split() + [tmpfile]) with codecs.open(tmpfile, "r", "utf-8") as f: raw = f.read() os.close(filehandle);