From 246fe7b1001fd3e662dd8ddc86baa72a9c5841bc Mon Sep 17 00:00:00 2001 From: Dan Parsons Date: Mon, 12 Apr 2021 19:48:41 -0700 Subject: [PATCH] Removed typo in "customers.json" Help output text from __main__.py tells users to copy the customer template to customers.json, but the program actually looks for customer.json, so I removed the s in the call to logger.critical() --- sniper/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sniper/__main__.py b/sniper/__main__.py index 2062e71..cab5ce8 100644 --- a/sniper/__main__.py +++ b/sniper/__main__.py @@ -63,7 +63,7 @@ def read_config(): customer = read_json(config_path / 'customer.json') except FileNotFoundError: logger.critical( - 'Missing customer configuration file, copy the template to config/customers.json and customize as described in the README to continue.') + 'Missing customer configuration file, copy the template to config/customer.json and customize as described in the README to continue.') sys.exit() except json.decoder.JSONDecodeError: logger.critical(