1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

fix for tornado error handler

This commit is contained in:
echel0n 2014-06-21 15:52:10 -07:00
parent 7e0bb651b2
commit bbbc7469fb

View File

@ -160,7 +160,7 @@ class MainHandler(RequestHandler):
if status_code == 404:
self.redirect('/home/')
elif status_code == 401:
self.write(self.http_error_401_handler())
self.finish(self.http_error_401_handler())
else:
super(MainHandler, self).write_error(status_code, **kwargs)