Commit 438785f8 authored by Leo Iannacone's avatar Leo Iannacone

no print user_config file path - add new line at the end of line

parent c214e54d
...@@ -11,7 +11,6 @@ user_config_file = os.path.join(base_path, '../user.config.js') ...@@ -11,7 +11,6 @@ user_config_file = os.path.join(base_path, '../user.config.js')
if os.path.isfile(user_config_file): if os.path.isfile(user_config_file):
print ("A config user file already exists. Skipping creation.") print ("A config user file already exists. Skipping creation.")
print user_config_file
exit() exit()
export_header = """ export_header = """
...@@ -35,7 +34,7 @@ with open(global_config_file) as fd: ...@@ -35,7 +34,7 @@ with open(global_config_file) as fd:
export_config.append(line) export_config.append(line)
export_config.append('// DO NOT EDIT THIS LINE:\n') export_config.append('// DO NOT EDIT THIS LINE:\n')
export_config.append('module.exports = config') export_config.append('module.exports = config\n')
print ("Creating user configuration ...") print ("Creating user configuration ...")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment