# HG changeset patch # User Sylvain Thenault # Date 1231160920 -3600 # Node ID e2647e72afe7bd796410a533fdf70cbb134ee2d7 # Parent 00ada106b1384fbd5a30abf36f7c14a35c874430 py2.4 bug diff -r 00ada106b138 -r e2647e72afe7 web/_exceptions.py --- a/web/_exceptions.py Sat Jan 03 23:10:12 2009 +0100 +++ b/web/_exceptions.py Mon Jan 05 14:08:40 2009 +0100 @@ -48,7 +48,8 @@ """raised when a json remote call fails """ def __init__(self, reason=''): - super(RequestError, self).__init__() + #super(RequestError, self).__init__() # XXX require py >= 2.5 + RequestError.__init__(self) self.reason = reason def dumps(self):