aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/crawler.py (renamed from src/web/crawler.py)0
-rwxr-xr-xsrc/manager.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/src/web/crawler.py b/src/crawler.py
index 22e73754..22e73754 100644
--- a/src/web/crawler.py
+++ b/src/crawler.py
diff --git a/src/manager.py b/src/manager.py
index 6967176e..e1f0878b 100755
--- a/src/manager.py
+++ b/src/manager.py
@@ -43,7 +43,7 @@ def fetch_asyncio(user_id, feed_id):
populate_g()
from flask import g
from web.models import User
- from web import crawler
+ import crawler
users = []
try:
users = User.query.filter(User.id == int(user_id)).all()
bgstack15