Fix missing space in current_user context processor

This commit is contained in:
Alexey Bezhan
2019-03-28 16:07:26 +00:00
parent 364ed7d4c6
commit 7e0529b600

View File

@@ -203,7 +203,7 @@ def init_app(application):
@application.context_processor
def _attach_current_user():
return{'current_user': current_user}
return {'current_user': current_user}
@application.context_processor
def _nav_selected():