From f92578342ff460bc86e14fa6e9f98e9ac3cd0a1d Mon Sep 17 00:00:00 2001 From: DN6 Date: Tue, 7 Oct 2025 17:47:02 +0530 Subject: [PATCH] update --- src/diffusers/models/modeling_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diffusers/models/modeling_utils.py b/src/diffusers/models/modeling_utils.py index 9ba04bb556..5475858dc0 100644 --- a/src/diffusers/models/modeling_utils.py +++ b/src/diffusers/models/modeling_utils.py @@ -1528,7 +1528,7 @@ class ModelMixin(torch.nn.Module, PushToHubMixin): raise ValueError( f"Context parallelism is enabled but the attention processor '{processor.__class__.__name__}' " f"is using backend '{attention_backend.value}' which does not support context parallelism. " - f"Please set a compatible attention backend: {compatible_backends}) using `model.set_attention_backend()` before " + f"Please set a compatible attention backend: {compatible_backends} using `model.set_attention_backend()` before " f"calling `enable_parallelism()`." )