aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/user.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-10 13:49:05 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-10 13:49:05 +0200
commit1fcf0e677b691f7c07189a7757ae79668dc0ec41 (patch)
treeb4c74c887e18f3746d97174eb26c439d69e45b96 /src/web/views/user.py
parentNow useless function. (diff)
downloadnewspipe-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.py3
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)
bgstack15