We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12d1cda commit 4677b11Copy full SHA for 4677b11
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