Skip to content

Commit

Permalink
use dobule quote.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn authored and weakish committed Jul 19, 2017
1 parent f2ae084 commit 8ed74b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legit/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def cmd_settings(args):
editor = os.environ.get('EDITOR') or os.environ.get('VISUAL') or 'pico'
os.system("{0} '{1}'".format(editor, path))
elif is_win:
os.system("'{0}'".format(path))
os.system("\"{0}\"".format(path))
else:
print("Edit '{0}' to manage Legit settings.\n".format(path))

Expand Down

0 comments on commit 8ed74b3

Please sign in to comment.