fill_config.py: fix missing config file error msg

This commit is contained in:
Neels Hofmeyr 2018-09-10 00:05:29 +02:00
parent a007eaa405
commit d924e332bb
1 changed files with 1 additions and 1 deletions

View File

@ -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)