We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e4e567 commit 597a0c6Copy full SHA for 597a0c6
djlsp/parser.py
@@ -142,7 +142,9 @@ class DummyForLoop:
142
# django uses abc.0 for list index lookup, replace those with abc[0]
143
script_lines.append(re.sub(r"\.(\d+)", r"[\1]", code))
144
145
- logger.debug(f"===\n{'\n'.join(script_lines)}\n===")
+ logger.debug(
146
+ "\n".join(["=== Jedi script ===", *script_lines, "=== End script ==="])
147
+ )
148
149
return jedi.Script(code="\n".join(script_lines), project=self.jedi_project)
150
0 commit comments