We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8f60b3 commit cc1e72eCopy full SHA for cc1e72e
1 file changed
template.py
@@ -298,7 +298,8 @@ def parse_strings_and_params(
298
if last_thing == "string":
299
# Merge adjacent string parts for efficiency, since the template engine allows that
300
strings[-1] += part
301
- strings.append(part)
+ else:
302
+ strings.append(part)
303
last_thing = "string"
304
else:
305
if last_thing is None or last_thing == "param":
0 commit comments