Use Python 3's new super() convention.

This commit is contained in:
Ryan Stein 2017-11-02 10:41:41 -04:00
parent 0cd979327b
commit cd21fb2396
52 changed files with 164 additions and 164 deletions

View file

@ -50,7 +50,7 @@ class PortalSessionHandler(SessionHandler):
Init the handler
"""
super(PortalSessionHandler, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)
self.portal = None
self.latest_sessid = 0
self.uptime = time.time()