We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0bf20c commit fa33c40Copy full SHA for fa33c40
dcc.py
@@ -1055,6 +1055,9 @@ def dcc_main(
1055
None,
1056
)
1057
if locals_index is not None:
1058
+ loc = re.compile("( (?:\\.locals|\\.registers) )(\\d+)\n").search(content[index + locals_index])
1059
+ if loc.group(2) == "0":
1060
+ content[index + locals_index] = loc.group(1) + "1" + "\n"
1061
content.insert(index + locals_index + 1, line_to_insert)
1062
else:
1063
Logger.error("Couldn't read <clinit> method in Application class")
0 commit comments