diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-25 13:15:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 13:15:29 +0000 |
commit | 9b2dcb04bcf3a8ef10bfd9b2aac71e478132ff63 (patch) | |
tree | 2f968665d902f887147d2f473612e637e1dc74b2 /modules/modelloader.py | |
parent | 252f15e046b06cdcf07caa2ec97a15462950b92a (diff) | |
parent | 68953a4705b7f04d82f6cfb4eb2e67756ec666ca (diff) | |
download | stable-diffusion-webui-gfx803-9b2dcb04bcf3a8ef10bfd9b2aac71e478132ff63.tar.gz stable-diffusion-webui-gfx803-9b2dcb04bcf3a8ef10bfd9b2aac71e478132ff63.tar.bz2 stable-diffusion-webui-gfx803-9b2dcb04bcf3a8ef10bfd9b2aac71e478132ff63.zip |
Merge branch 'master' into master
Diffstat (limited to 'modules/modelloader.py')
-rw-r--r-- | modules/modelloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/modelloader.py b/modules/modelloader.py index e351d808..522affc6 100644 --- a/modules/modelloader.py +++ b/modules/modelloader.py @@ -4,7 +4,6 @@ import shutil import importlib from urllib.parse import urlparse -from basicsr.utils.download_util import load_file_from_url from modules import shared from modules.upscaler import Upscaler, UpscalerLanczos, UpscalerNearest, UpscalerNone from modules.paths import script_path, models_path @@ -59,6 +58,7 @@ def load_models(model_path: str, model_url: str = None, command_path: str = None if model_url is not None and len(output) == 0: if download_name is not None: + from basicsr.utils.download_util import load_file_from_url dl = load_file_from_url(model_url, model_path, True, download_name) output.append(dl) else: |