aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/debug_windows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/debug_windows.py b/tools/debug_windows.py
index 02e00a504..dbde5f534 100644
--- a/tools/debug_windows.py
+++ b/tools/debug_windows.py
@@ -268,7 +268,7 @@ def find_error_like_snippets(content):
('ERROR: Module load completed but symbols could '
'not be loaded')}
return (re.search('error', l, re.IGNORECASE)
- and all(e not in errors for e in errors))
+ and all(e not in l for e in errors))
for i in range(1, len(lines)):
line = lines[i]