proc: fix typo in wrap_errors class

This commit is contained in:
Denis Bilenko
2009-04-24 16:20:06 +07:00
parent e816900bfc
commit 4fb61b9fde

View File

@@ -652,7 +652,7 @@ class wrap_errors(object):
return str(self.func)
def __repr__(self):
return str(self.func)
return repr(self.func)
def __getattr__(self, item):
return getattr(self.func, item)