lib/basehandler.py has two methods for getting a user and they are user() and current_user().
I think the latter one is not needed. The latter is only called in basehandler.py get_user_tz(), which I think could just utilize the user() method instead.
Incidentally, get_user_tz() does not seem to be called anywhere, but I'm not suggesting removing it as it could be useful in the future.
lib/basehandler.py has two methods for getting a user and they are
user()
andcurrent_user()
.I think the latter one is not needed. The latter is only called in basehandler.py
get_user_tz()
, which I think could just utilize theuser()
method instead.Incidentally,
get_user_tz()
does not seem to be called anywhere, but I'm not suggesting removing it as it could be useful in the future.