aboutsummaryrefslogtreecommitdiff
path: root/src/web/utils.py
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-10-11 12:18:07 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-01-26 23:46:30 +0100
commit5b7db9398abaacea241d9fcce7885457c562d7fa (patch)
treeef8982202ac7492892ba184c66c67a303c8cc795 /src/web/utils.py
parentassigning categories to feeds and articles (diff)
downloadnewspipe-5b7db9398abaacea241d9fcce7885457c562d7fa.tar.gz
newspipe-5b7db9398abaacea241d9fcce7885457c562d7fa.tar.bz2
newspipe-5b7db9398abaacea241d9fcce7885457c562d7fa.zip
a bit of cleaning, putting code where it belongs
Diffstat (limited to 'src/web/utils.py')
-rwxr-xr-xsrc/web/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/utils.py b/src/web/utils.py
index 91e2bd9f..38d15f25 100755
--- a/src/web/utils.py
+++ b/src/web/utils.py
@@ -61,6 +61,7 @@ from flask import g
from bootstrap import application as app, db
from web import controllers
from web.models import User, Feed, Article
+from web.lib.utils import clear_string
logger = logging.getLogger(__name__)
bgstack15