Commit 75c42021 authored by Stefan Behnel's avatar Stefan Behnel

disable crash report for normal compiler errors

parent 49c69da4
......@@ -147,7 +147,7 @@ class TreeVisitor(BasicVisitor):
self.access_path.append((parent, attrname, idx))
try:
result = self.visit(child)
except Errors.CompilerCrash:
except (Errors.CompileWarning, Errors.CompileError):
raise
except Exception, e:
import sys
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment