Expand ~ to user's home on Linux

This commit is contained in:
cryzed 2017-08-13 02:34:50 +02:00
parent ba04822388
commit 6ef53c814c

View File

@ -2048,8 +2048,9 @@ class CommandDispatcher:
message.info(out) message.info(out)
if file: if file:
path = os.path.expanduser(js_code)
try: try:
with open(js_code, 'r', encoding='utf-8') as f: with open(path, 'r', encoding='utf-8') as f:
js_code = f.read() js_code = f.read()
except OSError as e: except OSError as e:
raise cmdexc.CommandError(str(e)) raise cmdexc.CommandError(str(e))