You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The part where the .txt file with the same name as the LoRA is placed works as expected. However, the part where multiple text files are loaded from a folder with the same name as the LoRA does not work correctly.
This issue occurs because the implementation uses glob.glob, which treats these characters as wildcard patterns instead of literal characters.
It is likely that using glob.escape will fix the issue.
The text was updated successfully, but these errors were encountered:
u9th
changed the title
Lora Loader "examples" widget fails to load when LoRA path contains [ or ]
Lora Loader "examples" widget fails to load multiple text files from a folder when LoRA path contains [ or ]
Jan 23, 2025
Uh oh!
There was an error while loading. Please reload this page.
The part where the .txt file with the same name as the LoRA is placed works as expected. However, the part where multiple text files are loaded from a folder with the same name as the LoRA does not work correctly.
This issue occurs because the implementation uses glob.glob, which treats these characters as wildcard patterns instead of literal characters.
ComfyUI-Custom-Scripts/py/better_combos.py
Line 73 in bc8922d
It is likely that using glob.escape will fix the issue.
The text was updated successfully, but these errors were encountered: