diff options
author | Maiko Tan <maiko.tan.coding@gmail.com> | 2022-11-19 12:13:07 +0000 |
---|---|---|
committer | Maiko Tan <maiko.tan.coding@gmail.com> | 2022-11-19 12:13:07 +0000 |
commit | 336c341a7c3fe81cdf0fc45616ed0c16c79a2c6f (patch) | |
tree | 6760fd7f15a9049365a1ee2c56de37dd456504bd /modules/ui_extensions.py | |
parent | 8f2ff861d31972d12de278075ea9c0c0deef99de (diff) | |
parent | 84a6f211d407cd748c603edc3a81862488505c24 (diff) | |
download | stable-diffusion-webui-gfx803-336c341a7c3fe81cdf0fc45616ed0c16c79a2c6f.tar.gz stable-diffusion-webui-gfx803-336c341a7c3fe81cdf0fc45616ed0c16c79a2c6f.tar.bz2 stable-diffusion-webui-gfx803-336c341a7c3fe81cdf0fc45616ed0c16c79a2c6f.zip |
Merge branch 'master' into api-authorization
Diffstat (limited to 'modules/ui_extensions.py')
-rw-r--r-- | modules/ui_extensions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ui_extensions.py b/modules/ui_extensions.py index 6671cb60..030f011e 100644 --- a/modules/ui_extensions.py +++ b/modules/ui_extensions.py @@ -36,9 +36,9 @@ def apply_and_restart(disable_list, update_list): continue
try:
- ext.pull()
+ ext.fetch_and_reset_hard()
except Exception:
- print(f"Error pulling updates for {ext.name}:", file=sys.stderr)
+ print(f"Error getting updates for {ext.name}:", file=sys.stderr)
print(traceback.format_exc(), file=sys.stderr)
shared.opts.disabled_extensions = disabled
|