Skip to content

Commit

Permalink
Merge pull request tornadoweb#569 from MartinMartimeo/patch-1
Browse files Browse the repository at this point in the history
Adding super(...).__init__ in web.py
  • Loading branch information
bdarnell committed Jul 29, 2012
2 parents b5288cf + 68b5808 commit e200903
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tornado/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ class RequestHandler(object):
_template_loader_lock = threading.Lock()

def __init__(self, application, request, **kwargs):
super(RequestHandler, self).__init__()

self.application = application
self.request = request
self._headers_written = False
Expand Down

0 comments on commit e200903

Please sign in to comment.