Skip to content

Commit

Permalink
Add a space to make the scheme name prompt prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
akkana committed Jan 22, 2015
1 parent 1e8be06 commit 6ee30f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netscheme
Expand Up @@ -771,7 +771,7 @@ def find_and_set_scheme(newscheme, add=False, make_persistent=False):
ans = raw_input("Save this scheme for later? (y/N) ")
if ans == 'y' or ans == 'Y':
name = scheme.name
name = raw_input("Name for this scheme (%s):" % name)
name = raw_input("Name for this scheme (%s): " % name)
name = name.strip()
if name:
scheme.name = name
Expand Down

0 comments on commit 6ee30f3

Please sign in to comment.