Skip to content

Commit bf30673

Browse files
committed
Fix Hypernet infotext string split bug for PR AUTOMATIC1111#3283
1 parent 03a1e28 commit bf30673

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments, iteration
304304
"Size": f"{p.width}x{p.height}",
305305
"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),
306306
"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(':', '')),
307-
"Hypernet": (None if shared.loaded_hypernetwork is None else shared.loaded_hypernetwork.filename.split('\\')[-1].split('.')[0]),
307+
"Hypernet": (None if shared.loaded_hypernetwork is None else os.path.splitext(os.path.basename(shared.loaded_hypernetwork.filename))[0]),
308308
"Batch size": (None if p.batch_size < 2 else p.batch_size),
309309
"Batch pos": (None if p.batch_size < 2 else position_in_batch),
310310
"Variation seed": (None if p.subseed_strength == 0 else all_subseeds[index]),

0 commit comments

Comments
 (0)