From d924e332bb13b3d21b79c9a17a353c17a0d6e09b Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Mon, 10 Sep 2018 00:05:29 +0200 Subject: [PATCH] fill_config.py: fix missing config file error msg --- net/fill_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/fill_config.py b/net/fill_config.py index 09b515f..783171b 100755 --- a/net/fill_config.py +++ b/net/fill_config.py @@ -45,7 +45,7 @@ if not tmpl_dir or not os.path.isdir(tmpl_dir): exit(1) if not local_config_file or not os.path.isfile(local_config_file): - print("No such config file: %r" % tmpl_dir) + print("No such config file: %r" % local_config_file) exit(1) local_config_file = os.path.realpath(local_config_file)