Skip to content

Commit

Permalink
Merge pull request #303 from xni/master
Browse files Browse the repository at this point in the history
Fixed bad syntax
  • Loading branch information
lonnen committed Jan 27, 2012
2 parents def1a68 + 5f5f68e commit 3628886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion socorro/webapi/webapiService.py
Expand Up @@ -32,7 +32,7 @@ class Timeout(web.webapi.HTTPError):
def __init__(self):
status = "408 Request Timeout"
headers = {'Content-Type': 'text/html'}
super(Timeout, self).__init__(self, status, headers, self.message)
super(Timeout, self).__init__(status, headers, self.message)


class JsonWebServiceBase(object):
Expand Down

0 comments on commit 3628886

Please sign in to comment.