From d206223baead6e2d3a477ba69b4d6a2990fd3e3d Mon Sep 17 00:00:00 2001 From: Jake Buchholz Date: Mon, 3 Jun 2019 20:44:52 -0700 Subject: [PATCH] minor output formatting tweak to resolve-profile.py --- scripts/resolve-profile.py.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/resolve-profile.py.in b/scripts/resolve-profile.py.in index 5aca4d7..d348f32 100644 --- a/scripts/resolve-profile.py.in +++ b/scripts/resolve-profile.py.in @@ -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()