From 7ca89f5ec3c5a807823ee03cafa8888a04657db9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Aleksandrovi=C4=8D=20Klimov?= Date: Sat, 5 Feb 2022 19:46:02 +0100 Subject: [PATCH] Fix typo in the startup create-directory command suggestion (#405) --- changedetection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetection.py b/changedetection.py index 1ebd1185..90946089 100755 --- a/changedetection.py +++ b/changedetection.py @@ -63,7 +63,7 @@ def main(): os.mkdir(app_config['datastore_path']) else: print ("ERROR: Directory path for the datastore '{}' does not exist, cannot start, please make sure the directory exists.\n" - "Alternatively, use the -d parameter.".format(app_config['datastore_path']),file=sys.stderr) + "Alternatively, use the -C parameter.".format(app_config['datastore_path']),file=sys.stderr) sys.exit(2) datastore = store.ChangeDetectionStore(datastore_path=app_config['datastore_path'], version_tag=changedetectionio.__version__)