Skip to content

Commit

Permalink
Tweak CLI setup messages
Browse files Browse the repository at this point in the history
  • Loading branch information
suchow committed Aug 4, 2016
1 parent 07d846e commit adda073
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions wallace/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,11 @@ def setup():
config_path = os.path.join(os.path.expanduser("~"), config_name)

if os.path.isfile(config_path):
log("Wallace config file exists.")
log("Wallace config file already exists.", chevrons=False)

else:
log("Creating Wallace config file at ~/.wallaceconfig...")
log("Creating Wallace config file at ~/.wallaceconfig...",
chevrons=False)
wallace_module_path = os.path.dirname(os.path.realpath(__file__))
src = os.path.join(wallace_module_path, "config", config_name)
shutil.copyfile(src, config_path)
Expand Down

0 comments on commit adda073

Please sign in to comment.