aboutsummaryrefslogtreecommitdiff
path: root/src/web/utils.py
diff options
context:
space:
mode:
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