Merge pull request #15135 from AUTOMATIC1111/fix-extract_style_text_from_prompt

fix extract_style_text_from_prompt #15132
This commit is contained in:
AUTOMATIC1111 2024-03-06 13:07:43 +03:00 committed by GitHub
commit 14215beb48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def extract_style_text_from_prompt(style_text, prompt):
stripped_style_text = style_text.strip()
if "{prompt}" in stripped_style_text:
left, right = stripped_style_text.split("{prompt}", 2)
left, _, right = stripped_style_text.partition("{prompt}")
if stripped_prompt.startswith(left) and stripped_prompt.endswith(right):
prompt = stripped_prompt[len(left):len(stripped_prompt)-len(right)]
return True, prompt