Merge pull request #2899 from cryzed/jseval-expand-tilde

Expand ~ to user's home on Linux
This commit is contained in:
Florian Bruhin 2017-08-13 08:53:14 +02:00 committed by GitHub
commit 2957c4e55f

View File

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