aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-09-10 00:05:29 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2018-09-10 00:05:29 +0200
commitd924e332bb13b3d21b79c9a17a353c17a0d6e09b (patch)
tree3d2c13a9557af840497f9ebc254864dea4787aa1 /net
parenta007eaa4056f02b2dcf87053fe6c4a7080ca035b (diff)
fill_config.py: fix missing config file error msg
Diffstat (limited to 'net')
-rwxr-xr-xnet/fill_config.py2
1 files changed, 1 insertions, 1 deletions
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)