From 2342bf19d5a3a10b214c7aa5d6f341cfff3ca528 Mon Sep 17 00:00:00 2001 From: James Miller Date: Tue, 21 Apr 2020 18:00:43 -0500 Subject: [PATCH] minor update to formatting of print statement on cleanyaml.py --- data/yaml/cleanyaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/yaml/cleanyaml.py b/data/yaml/cleanyaml.py index cb396d6..ed971f7 100644 --- a/data/yaml/cleanyaml.py +++ b/data/yaml/cleanyaml.py @@ -15,7 +15,7 @@ def main(): yfiles.append(file) yfiles.sort() - print(yfiles) + print("Going to clean up the following files: {}".format(yfiles)) for x in yfiles: print("Doing: {}".format(x))