Commit df6f3fda authored by Alexandre Vassalotti's avatar Alexandre Vassalotti

The output() function takes only one string argument.

parent 7aaa770b
......@@ -323,8 +323,8 @@ class VisitorBase(object):
try:
meth(object, *args)
except Exception:
output("Error visiting", repr(object))
output(sys.exc_info()[1])
output("Error visiting" + repr(object))
output(str(sys.exc_info()[1]))
traceback.print_exc()
# XXX hack
if hasattr(self, 'file'):
......
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