minor output formatting tweak to resolve-profile.py

This commit is contained in:
Jake Buchholz 2019-06-03 20:44:52 -07:00 committed by Mike Crute
parent dbae752178
commit d206223bae
1 changed files with 3 additions and 1 deletions

View File

@ -81,7 +81,7 @@ sys.stderr.write("\n")
# parse/resolve HOCON profile's builds' config
for build, cfg in BUILDS.items():
sys.stderr.write(f">>> Resolving configuration for '{build}'\n")
print(f"\n>>> Resolving configuration for '{build}'")
build_dir = os.path.join(PROFILE_DIR, build)
# make a fresh profile build directory
@ -147,3 +147,5 @@ for build, cfg in BUILDS.items():
# write build vars file
with open(os.path.join(build_dir, 'vars.json'), 'w') as out:
json.dump(cfg, out, indent=4, separators=(',', ': '))
print()