Kaydet (Commit) df6f3fda authored tarafından Alexandre Vassalotti's avatar Alexandre Vassalotti

The output() function takes only one string argument.

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