diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-15 05:27:50 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-15 05:27:50 +0000 |
commit | 7e77a38cbc155baf96db66064afbdd40df715335 (patch) | |
tree | 5ef77e90c7d1ce785bc3d95b31e4e0a6cb122989 /modules/processing.py | |
parent | d6b79b99631054033ffde645ff32756c1216bc5f (diff) | |
download | stable-diffusion-webui-gfx803-7e77a38cbc155baf96db66064afbdd40df715335.tar.gz stable-diffusion-webui-gfx803-7e77a38cbc155baf96db66064afbdd40df715335.tar.bz2 stable-diffusion-webui-gfx803-7e77a38cbc155baf96db66064afbdd40df715335.zip |
get XYZ plot to work with recent changes to refined specified in fields of p rather than in settings
Diffstat (limited to 'modules/processing.py')
-rwxr-xr-x | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index c983d001..25a19a77 100755 --- a/modules/processing.py +++ b/modules/processing.py @@ -746,7 +746,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: if p.tiling is None:
p.tiling = opts.tiling
- if p.refiner_checkpoint not in (None, "", "None"):
+ if p.refiner_checkpoint not in (None, "", "None", "none"):
p.refiner_checkpoint_info = sd_models.get_closet_checkpoint_match(p.refiner_checkpoint)
if p.refiner_checkpoint_info is None:
raise Exception(f'Could not find checkpoint with name {p.refiner_checkpoint}')
|