From a82efd4dccc25fc2ca445593c3c3de1c0bca2e75 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 26 Oct 2021 13:16:31 -0500 Subject: [PATCH] Fixed a typo --- src/update/update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/update/update.py b/src/update/update.py index 7f1b7cf2..d6b47f5c 100644 --- a/src/update/update.py +++ b/src/update/update.py @@ -41,10 +41,10 @@ def perform_update(endpoint, current_version, app_name='', password=None, update downloaded = download_update(update_url, download_path, requests_session=requests_session, progress_callback=progress_callback) extracted = extract_update(downloaded, update_path, password=password) bootstrap_path = move_bootstrap(extracted) - execute_bootstrap(bootstrap_path, extracted) - logger.info("Update prepared for installation.") if callable(update_complete_callback): update_complete_callback() + execute_bootstrap(bootstrap_path, extracted) + logger.info("Update prepared for installation.") def create_requests_session(app_name=None, version=None): user_agent = ''