From 19247a4f6254b6b078a33a612e078730738d7473 Mon Sep 17 00:00:00 2001 From: Manuel Ebert Date: Mon, 20 Apr 2015 14:36:53 +0200 Subject: [PATCH] Remove ; --- jrnl/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/util.py b/jrnl/util.py index daeee46c..ae011b87 100644 --- a/jrnl/util.py +++ b/jrnl/util.py @@ -129,7 +129,7 @@ def get_text_from_editor(config, template=""): subprocess.call(config['editor'].split() + [tmpfile]) with codecs.open(tmpfile, "r", "utf-8") as f: raw = f.read() - os.close(filehandle); + os.close(filehandle) os.remove(tmpfile) if not raw: prompt('[Nothing saved to file]')