We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1a6de commit 0e41c4bCopy full SHA for 0e41c4b
invokeai/app/invocations/model.py
@@ -307,7 +307,7 @@ def invoke(self, context: InvocationContext) -> SDXLLoraLoaderOutput:
307
model_name=lora_name,
308
model_type=ModelType.Lora,
309
):
310
- raise Exception(f"Unkown lora name: {lora_name}!")
+ raise Exception(f"Unknown lora name: {lora_name}!")
311
312
if self.unet is not None and any(lora.model_name == lora_name for lora in self.unet.loras):
313
raise Exception(f'Lora "{lora_name}" already applied to unet')
0 commit comments