mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2026-04-20 22:13:43 +00:00
Fix after previous commit
This commit is contained in:
parent
b6830bcdae
commit
b85ae6bc96
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue