From 8203baf7bd2baf62c86a398fd0ecaf9adf1c89ef Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Sat, 26 Dec 2015 20:08:20 -0800 Subject: [PATCH] Initialize match in the test script. Thanks, Michel! --- util/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/util/test.py b/util/test.py index 8e5bc0fb..1f9454b5 100755 --- a/util/test.py +++ b/util/test.py @@ -182,6 +182,7 @@ class Test: # Make sure the stack trace has the right line. Skip over any lines that # come from builtin libraries. + match = False stack_lines = error_lines[line + 1:] for stack_line in stack_lines: match = STACK_TRACE_PATTERN.search(stack_line)