From c370c4b348e10753db467ac5d73ad31c782f8972 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 4 Jul 2016 11:01:40 -0400 Subject: Fix missing formatter --- steuermann/run_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steuermann/run_all.py b/steuermann/run_all.py index 661f6fd..061dcd3 100644 --- a/steuermann/run_all.py +++ b/steuermann/run_all.py @@ -126,7 +126,7 @@ def main() : def get_common_resources(hosts_ini): if not os.path.exists(hosts_ini): - print('ERROR - %s does not exist') + print('ERROR - %s does not exist' % hosts_ini) sys.exit(1) file = open(hosts_ini) -- cgit