diff options
author | linkoid <36754150+linkoid@users.noreply.github.com> | 2023-05-26 15:15:59 -0400 |
---|---|---|
committer | linkoid <36754150+linkoid@users.noreply.github.com> | 2023-05-26 15:25:31 -0400 |
commit | 1f0fdede176989f151da6b97bd9a140b7f0af6e5 (patch) | |
tree | e9fbaef018d301f442d8c9973261a67889939842 /modules/sd_models.py | |
parent | 3829afec365b748e330da33b00a0e363f8c8ab71 (diff) |
Show full traceback in get_sd_model()
to reveal if an error is caused by an extension
Diffstat (limited to 'modules/sd_models.py')
-rw-r--r-- | modules/sd_models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_models.py b/modules/sd_models.py index 1871cc97..3e7fc7e3 100644 --- a/modules/sd_models.py +++ b/modules/sd_models.py @@ -424,7 +424,7 @@ class SdModelData: try:
load_model()
except Exception as e:
- errors.display(e, "loading stable diffusion model")
+ errors.display(e, "loading stable diffusion model", full_traceback=True)
print("", file=sys.stderr)
print("Stable diffusion model failed to load", file=sys.stderr)
self.sd_model = None
|