diff options
author | cedricbonhomme <devnull@localhost> | 2010-03-10 11:07:57 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2010-03-10 11:07:57 +0100 |
commit | efba9d427ecb487531d39cb0290475e196da2bd8 (patch) | |
tree | 76bb2b71e7d63b8e9858fb49361055ef106acd5a /utils.py | |
parent | Improvement of the security (test URLs,etc.). Added mutex. (diff) | |
download | newspipe-efba9d427ecb487531d39cb0290475e196da2bd8.tar.gz newspipe-efba9d427ecb487531d39cb0290475e196da2bd8.tar.bz2 newspipe-efba9d427ecb487531d39cb0290475e196da2bd8.zip |
Bug fix: bad identifiant of feed.
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |