summaryrefslogtreecommitdiff
path: root/app/views/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/__init__.py')
-rw-r--r--app/views/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/__init__.py b/app/views/__init__.py
index 7d344ad..7e0a6a4 100644
--- a/app/views/__init__.py
+++ b/app/views/__init__.py
@@ -7,14 +7,14 @@ from .. import app, db
# Some general imports
#
from ..login import current_user, login_required
-from ..utils import templated, redirect, assert_authorisation
+from ..utils import today, templated, redirect, assert_authorisation
from ..flask_extend import Blueprint
from flask import flash
__all__ = [
'db', 'app',
'current_user', 'login_required',
- 'assert_authorisation', 'templated', 'redirect',
+ 'assert_authorisation', 'templated', 'today', 'redirect',
'Blueprint', 'flash',
'request', 'url_for'
]