Fix access bug due to forgotten normalization
Prevent this from happening again by wrapping all occurences of
users.get_current_account with accounts.getCurrentAccount, which will
always normalize (unless explicitly told not to).
Patch by: Sverre Rabbelier
from django.dispatch import Signal
request_started = Signal()
request_finished = Signal()
got_request_exception = Signal(providing_args=["request"])