Skip to content

Commit

Permalink
use dobule quote.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Aug 3, 2012
1 parent 428ce76 commit 84bd1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion legit/cli.py
Expand Up @@ -381,7 +381,7 @@ def cmd_settings(args):
editor = os.environ.get('EDITOR') or os.environ.get('VISUAL') or 'pico' editor = os.environ.get('EDITOR') or os.environ.get('VISUAL') or 'pico'
os.system("{0} '{1}'".format(editor, path)) os.system("{0} '{1}'".format(editor, path))
elif is_win: elif is_win:
os.system("'{0}'".format(path)) os.system("\"{0}\"".format(path))
else: else:
print "Edit '{0}' to manage Legit settings.\n".format(path) print "Edit '{0}' to manage Legit settings.\n".format(path)


Expand Down

0 comments on commit 84bd1b1

Please sign in to comment.