Name file handle if we're going to us it

Conflicts:
	jrnl/util.py
This commit is contained in:
MinchinWeb 2014-12-17 09:50:39 -07:00
parent 01a7f660f3
commit b3ed4926f4

View file

@ -122,13 +122,14 @@ def load_config(config_path):
def get_text_from_editor(config, template=""):
tmpfile = os.path.join(tempfile.mktemp(prefix="jrnl", suffix=".txt"))
filehandle, tmpfile = tempfile.mkstemp(prefix="jrnl", text=True, suffix=".txt")
with codecs.open(tmpfile, 'w', "utf-8") as f:
if template:
f.write(template)
subprocess.call(config['editor'].split() + [tmpfile])
with codecs.open(tmpfile, "r", "utf-8") as f:
raw = f.read()
os.close(_);
os.close(filehandle);
os.remove(tmpfile)
if not raw:
prompt('[Nothing saved to file]')