mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-13 19:45:56 +00:00
Fix typo in the startup create-directory command suggestion (#405)
This commit is contained in:
committed by
GitHub
parent
8ab8aaa6ae
commit
7ca89f5ec3
@@ -63,7 +63,7 @@ def main():
|
|||||||
os.mkdir(app_config['datastore_path'])
|
os.mkdir(app_config['datastore_path'])
|
||||||
else:
|
else:
|
||||||
print ("ERROR: Directory path for the datastore '{}' does not exist, cannot start, please make sure the directory exists.\n"
|
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)
|
sys.exit(2)
|
||||||
|
|
||||||
datastore = store.ChangeDetectionStore(datastore_path=app_config['datastore_path'], version_tag=changedetectionio.__version__)
|
datastore = store.ChangeDetectionStore(datastore_path=app_config['datastore_path'], version_tag=changedetectionio.__version__)
|
||||||
|
|||||||
Reference in New Issue
Block a user