diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2024-01-01 14:25:30 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2024-01-01 14:25:30 +0000 |
commit | 5d7d1823afab0a051a3fbbdb3213bae8051350b7 (patch) | |
tree | 1c718b1a935fe5c2cc7861e647960f12aecff124 /modules/ui_extra_networks.py | |
parent | 1ffdedc11d49862cf0d030fb0bcc25eb0449939b (diff) | |
download | stable-diffusion-webui-gfx803-5d7d1823afab0a051a3fbbdb3213bae8051350b7.tar.gz stable-diffusion-webui-gfx803-5d7d1823afab0a051a3fbbdb3213bae8051350b7.tar.bz2 stable-diffusion-webui-gfx803-5d7d1823afab0a051a3fbbdb3213bae8051350b7.zip |
rename infotext.py again, this time to infotext_utils.py; I didn't realize infotext would be used for variable names in multiple places, which makes it awkward to import the module; also fix the bug I caused by this rename that breaks tests
Diffstat (limited to 'modules/ui_extra_networks.py')
-rw-r--r-- | modules/ui_extra_networks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui_extra_networks.py b/modules/ui_extra_networks.py index 790af135..beea1316 100644 --- a/modules/ui_extra_networks.py +++ b/modules/ui_extra_networks.py @@ -10,7 +10,7 @@ import json import html
from fastapi.exceptions import HTTPException
-from modules.infotext import image_from_url_text
+from modules.infotext_utils import image_from_url_text
from modules.ui_components import ToolButton
extra_pages = []
|