diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-10 13:49:05 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-10 13:49:05 +0200 |
commit | 1fcf0e677b691f7c07189a7757ae79668dc0ec41 (patch) | |
tree | b4c74c887e18f3746d97174eb26c439d69e45b96 /src/web/views/user.py | |
parent | Now useless function. (diff) | |
download | newspipe-1fcf0e677b691f7c07189a7757ae79668dc0ec41.tar.gz newspipe-1fcf0e677b691f7c07189a7757ae79668dc0ec41.tar.bz2 newspipe-1fcf0e677b691f7c07189a7757ae79668dc0ec41.zip |
Moved notifications module.
Diffstat (limited to 'src/web/views/user.py')
-rw-r--r-- | src/web/views/user.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/views/user.py b/src/web/views/user.py index 1ce16ade..8568439f 100644 --- a/src/web/views/user.py +++ b/src/web/views/user.py @@ -6,7 +6,8 @@ from flask.ext.babel import gettext from flask.ext.login import login_required, current_user import conf -from web import utils, notifications +from notifications import notifications +from web import utils from web.lib.user_utils import confirm_token from web.controllers import (UserController, FeedController, ArticleController, CategoryController) |