From b85ae6bc96ff03aca12f8ad6212da39ec9cca192 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Wed, 24 Jul 2024 19:10:17 -0700 Subject: [PATCH] Fix after previous commit --- one_click.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/one_click.py b/one_click.py index 547f4df4..d823ecb3 100644 --- a/one_click.py +++ b/one_click.py @@ -352,7 +352,7 @@ def update_requirements(initial_installation=False, pull=True): after_pull_hashes = {file_name: calculate_file_hash(file_name) for file_name in files_to_check} # Check if git pull actually updated anything - if "Already up to date." not in pull_output: + if "Already up to date." not in pull_output.stdout.decode('utf-8'): repository_updated = True # Check for differences in installation file hashes