aboutsummaryrefslogtreecommitdiffstats
path: root/modules/errors.py
diff options
context:
space:
mode:
authorfuggy <45698918+nonetrix@users.noreply.github.com>2023-01-17 03:50:30 +0000
committerGitHub <noreply@github.com>2023-01-17 03:50:30 +0000
commiteb2223340cfdd58efaa157662c279fbf6c90c7d9 (patch)
treecaf00a30cabd66393941b0f0ee856661a860c005 /modules/errors.py
parente0e80050091ea7f58ae17c69f31d1b5de5e0ae20 (diff)
downloadstable-diffusion-webui-gfx803-eb2223340cfdd58efaa157662c279fbf6c90c7d9.tar.gz
stable-diffusion-webui-gfx803-eb2223340cfdd58efaa157662c279fbf6c90c7d9.tar.bz2
stable-diffusion-webui-gfx803-eb2223340cfdd58efaa157662c279fbf6c90c7d9.zip
Fix typo
Diffstat (limited to 'modules/errors.py')
-rw-r--r--modules/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/errors.py b/modules/errors.py
index a668c014..a10e8708 100644
--- a/modules/errors.py
+++ b/modules/errors.py
@@ -19,7 +19,7 @@ def display(e: Exception, task):
message = str(e)
if "copying a param with shape torch.Size([640, 1024]) from checkpoint, the shape in current model is torch.Size([640, 768])" in message:
print_error_explanation("""
-The most likely cause of this is you are trying to load Stable Diffusion 2.0 model without specifying its connfig file.
+The most likely cause of this is you are trying to load Stable Diffusion 2.0 model without specifying its config file.
See https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#stable-diffusion-20 for how to solve this.
""")