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 7737182 commit b784919Copy full SHA for b784919
src/compilers/base.py
@@ -28,7 +28,7 @@ def analyze_compiler_output(self, output):
28
failed = defaultdict(list)
29
filtered_output = output
30
for p in self.filter_patterns:
31
- filtered_output = re.sub(p, '', output)
+ filtered_output = re.sub(p, '', filtered_output)
32
matches = re.findall(self.ERROR_REGEX, filtered_output)
33
for match in matches:
34
filename = self.get_filename(match)
0 commit comments