From efba9d427ecb487531d39cb0290475e196da2bd8 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Wed, 10 Mar 2010 11:07:57 +0100 Subject: Bug fix: bad identifiant of feed. --- utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils.py') diff --git a/utils.py b/utils.py index 1412a50a..8c6e947d 100644 --- a/utils.py +++ b/utils.py @@ -144,8 +144,8 @@ def load_feed(): Load feeds and articles in a dictionary. """ LOCKER.acquire() - list_of_feeds = None - list_of_articles = None + list_of_feeds = [] + list_of_articles = [] try: conn = sqlite3.connect("./var/feed.db", isolation_level = None) c = conn.cursor() -- cgit