From b20645c0082c4146b1d817cca219e83f696aff1c Mon Sep 17 00:00:00 2001 From: Benjamin Kreuscher Date: Mon, 28 Nov 2022 21:16:53 +0100 Subject: [PATCH] place latest version check as first "infrastructure call" --- wahoomc/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wahoomc/main.py b/wahoomc/main.py index c341be02..3857ad53 100644 --- a/wahoomc/main.py +++ b/wahoomc/main.py @@ -30,10 +30,10 @@ def run(run_level): logging.basicConfig(format='%(levelname)s:%(message)s', level=logging.INFO) + check_installed_version_against_latest_pypi() initialize_work_directories() adjustments_due_to_breaking_changes() check_installation_of_required_programs() - check_installed_version_against_latest_pypi() if run_level == 'init': o_input_data = cli_init()