X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=wrw%2Fresp.py;fp=wrw%2Fresp.py;h=75a7f3a5cd64d9addc84a5414dc10febd3d809db;hb=c33f2d6c068bf96c56e8e6966340f5f6e448df96;hp=04f3cabe6d5d8d7be055d2b9a985d505cea0310a;hpb=d854802afd3d6f22d86131f9a87105a69d4e1ec7;p=wrw.git diff --git a/wrw/resp.py b/wrw/resp.py index 04f3cab..75a7f3a 100644 --- a/wrw/resp.py +++ b/wrw/resp.py @@ -38,7 +38,7 @@ def setskel(req, skel): class usererror(dispatch.restart): def __init__(self, message, detail): - super(usererror, self).__init__() + super().__init__() self.message = message self.detail = detail @@ -47,7 +47,7 @@ class usererror(dispatch.restart): class message(dispatch.restart): def __init__(self, message, detail): - super(message, self).__init__() + super().__init__() self.message = message self.detail = detail @@ -60,20 +60,20 @@ class httperror(usererror): message = proto.statusinfo[status][0] if detail is None: detail = proto.statusinfo[status][1] - super(httperror, self).__init__(message, detail) + super().__init__(message, detail) self.status = status def handle(self, req): req.status(self.status, self.message) - return super(httperror, self).handle(req) + return super().handle(req) class notfound(httperror): def __init__(self): - return super(notfound, self).__init__(404) + return super().__init__(404) class redirect(dispatch.restart): def __init__(self, url, status = 303): - super(redirect, self).__init__() + super().__init__() self.url = url self.status = status