From 75df52051b167425adcfb68797f77fcbcad33c4e Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 6 Jul 2015 10:28:58 +0200 Subject: light refact * both crawlers now use the same utils methods * the original crawler use now more of the controllers, enabling the filters feature --- pyaggr3g470r/views/feed.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pyaggr3g470r/views') diff --git a/pyaggr3g470r/views/feed.py b/pyaggr3g470r/views/feed.py index 224e27fb..4c848b0e 100644 --- a/pyaggr3g470r/views/feed.py +++ b/pyaggr3g470r/views/feed.py @@ -1,6 +1,5 @@ #! /usr/bin/env python # -*- coding: utf-8 - -import logging from datetime import datetime from sqlalchemy import desc from werkzeug.exceptions import BadRequest @@ -12,7 +11,7 @@ from flask.ext.login import login_required import conf from pyaggr3g470r import utils -from pyaggr3g470r.lib.utils import construct_feed_from +from pyaggr3g470r.lib.feed.utils import construct_feed_from from pyaggr3g470r.forms import AddFeedForm from pyaggr3g470r.controllers import FeedController, ArticleController -- cgit