Commit 1fcb4834 authored by AUTOMATIC's avatar AUTOMATIC

prevent styles from adding an extra comma

parent 8e13f54a
......@@ -19,6 +19,9 @@ def load_styles(filename):
def apply_style_text(style_text, prompt):
if style_text == "":
return prompt
return prompt + ", " + style_text if prompt else style_text
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment