Merge pull request #15343 from light-and-ray/escape_brackets_in_lora_random_prompt
escape brackets in lora random prompt generator
This commit is contained in:
commit
755d2cb2e5
|
@ -149,6 +149,8 @@ class LoraUserMetadataEditor(ui_extra_networks_user_metadata.UserMetadataEditor)
|
||||||
|
|
||||||
v = random.random() * max_count
|
v = random.random() * max_count
|
||||||
if count > v:
|
if count > v:
|
||||||
|
for x in "({[]})":
|
||||||
|
tag = tag.replace(x, '\\' + x)
|
||||||
res.append(tag)
|
res.append(tag)
|
||||||
|
|
||||||
return ", ".join(sorted(res))
|
return ", ".join(sorted(res))
|
||||||
|
|
Loading…
Reference in New Issue