mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
bugfix for warning message (#6)
This commit is contained in:
parent
9621ca4d64
commit
1c64bb7140
@ -66,7 +66,7 @@ def unwrap_style_text_from_prompt(style_text, prompt):
|
|||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
# If the style text has multple "{prompt}"s, we can't split it into
|
# If the style text has multple "{prompt}"s, we can't split it into
|
||||||
# two parts. This is an error, but we can't do anything about it.
|
# two parts. This is an error, but we can't do anything about it.
|
||||||
print("Unable to compare style text to prompt:`n{style_text}")
|
print(f"Unable to compare style text to prompt:`n{style_text}")
|
||||||
print(f"Error: {e}")
|
print(f"Error: {e}")
|
||||||
return False, prompt
|
return False, prompt
|
||||||
if stripped_prompt.startswith(left) and stripped_prompt.endswith(right):
|
if stripped_prompt.startswith(left) and stripped_prompt.endswith(right):
|
||||||
|
Loading…
Reference in New Issue
Block a user