From 8b01cd3a0a8f4a406e73bb26f7e8b476c6cefb59 Mon Sep 17 00:00:00 2001 From: Barunes Padhy Date: Fri, 21 Jun 2024 21:18:25 +0300 Subject: [PATCH] remove print statement and change update branch --- backend/apimanager/check_updates.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/apimanager/check_updates.py b/backend/apimanager/check_updates.py index 5688b15..4b0f20d 100644 --- a/backend/apimanager/check_updates.py +++ b/backend/apimanager/check_updates.py @@ -59,8 +59,7 @@ print ('Checking for updates') rangolio_location = settings.DEPLOY_CONFIG["RANGOLIO_LOCATION"] run_git_command('git_fetch_origin', rangolio_location) -updates = run_git_command('git_diff', rangolio_location, ['origin/development']) -print (updates) +updates = run_git_command('git_diff', rangolio_location, ['origin/main']) if updates['subprocess_output'] and updates['subprocess_returncode'] == 0: update_confirmation = draw_dialogue_box('Software Update', 'Would you like to update rangolio?', 'confirmation') if update_confirmation: