There was an error while loading. Please reload this page.
1 parent 7aaa770 commit df6f3fdCopy full SHA for df6f3fd
1 file changed
Parser/asdl.py
@@ -323,8 +323,8 @@ def visit(self, object, *args):
323
try:
324
meth(object, *args)
325
except Exception:
326
- output("Error visiting", repr(object))
327
- output(sys.exc_info()[1])
+ output("Error visiting" + repr(object))
+ output(str(sys.exc_info()[1]))
328
traceback.print_exc()
329
# XXX hack
330
if hasattr(self, 'file'):
0 commit comments