From 85be8b5fa82c16fc3a25efe5bf34779dbea8f9e9 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Tue, 3 Nov 2020 22:54:37 +0100 Subject: [PATCH] typo monitor --- run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.py b/run.py index 9431a53..33701d5 100644 --- a/run.py +++ b/run.py @@ -995,7 +995,7 @@ def format_frame(f): @argh.arg('-t', '--type', choices=['stable', 'arm', 'testing-unstable', 'dev'], default="stable") -def main(path_to_analyseCI, ssl=False, keyfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/key.pem", certfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/crt.pem", type="stable", dont_minotor_apps_list=False, dont_monitor_git=False, no_monthly_jobs=False, port=4242, debug=False): +def main(path_to_analyseCI, ssl=False, keyfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/key.pem", certfile_path="/etc/yunohost/certs/ci-apps.yunohost.org/crt.pem", type="stable", dont_monitor_apps_list=False, dont_monitor_git=False, no_monthly_jobs=False, port=4242, debug=False): if not os.path.exists(path_to_analyseCI): print(f"Error: analyseCI script doesn't exist at '{path_to_analyseCI}'") sys.exit(1) @@ -1008,7 +1008,7 @@ def main(path_to_analyseCI, ssl=False, keyfile_path="/etc/yunohost/certs/ci-apps app.config.path_to_analyseCI = path_to_analyseCI - if not dont_minotor_apps_list: + if not dont_monitor_apps_list: app.add_task(monitor_apps_lists(type=type, dont_monitor_git=dont_monitor_git))