diff options
author | timntorres <timothynarcisotorres@gmail.com> | 2022-10-28 06:31:45 +0000 |
---|---|---|
committer | timntorres <timothynarcisotorres@gmail.com> | 2022-10-28 06:31:45 +0000 |
commit | c0677b33161f04c3ed1a7a78f4c7288fb95787b7 (patch) | |
tree | cab2e0f6416e8673aac5e852e0c72da7e2a05b39 | |
parent | d4a069a23cb19104b4e58a33d0d1670fadaefb7a (diff) | |
download | stable-diffusion-webui-gfx803-c0677b33161f04c3ed1a7a78f4c7288fb95787b7.tar.gz stable-diffusion-webui-gfx803-c0677b33161f04c3ed1a7a78f4c7288fb95787b7.tar.bz2 stable-diffusion-webui-gfx803-c0677b33161f04c3ed1a7a78f4c7288fb95787b7.zip |
Explicitly state when Hypernet is none.
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 93066522..74a0cd64 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -328,7 +328,7 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments, iteration "Size": f"{p.width}x{p.height}",
"Model hash": getattr(p, 'sd_model_hash', None if not opts.add_model_hash_to_info or not shared.sd_model.sd_model_hash else shared.sd_model.sd_model_hash),
"Model": (None if not opts.add_model_name_to_info or not shared.sd_model.sd_checkpoint_info.model_name else shared.sd_model.sd_checkpoint_info.model_name.replace(',', '').replace(':', '')),
- "Hypernet": (None if shared.loaded_hypernetwork is None else shared.loaded_hypernetwork.name),
+ "Hypernet": ("None" if shared.loaded_hypernetwork is None else shared.loaded_hypernetwork.name),
"Hypernetwork strength": (None if shared.loaded_hypernetwork is None else shared.opts.sd_hypernetwork_strength),
"Batch size": (None if p.batch_size < 2 else p.batch_size),
"Batch pos": (None if p.batch_size < 2 else position_in_batch),
|