diff options
author | cedricbonhomme <devnull@localhost> | 2010-07-14 13:26:18 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2010-07-14 13:26:18 +0200 |
commit | 67a506e95087515e654f9e26a17608fa673d8802 (patch) | |
tree | 315615a6085c808513825d64c2850e597e371094 /feedgetter.py | |
parent | Updated README file. (diff) | |
download | newspipe-67a506e95087515e654f9e26a17608fa673d8802.tar.gz newspipe-67a506e95087515e654f9e26a17608fa673d8802.tar.bz2 newspipe-67a506e95087515e654f9e26a17608fa673d8802.zip |
Minor bug fix when the field updated_parsed for an article does not exists.
Diffstat (limited to 'feedgetter.py')
-rwxr-xr-x | feedgetter.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/feedgetter.py b/feedgetter.py index d2aca435..a886f351 100755 --- a/feedgetter.py +++ b/feedgetter.py @@ -125,6 +125,9 @@ class FeedGetter(object): except sqlite3.IntegrityError: # article already in the base pass + except: + # Missing information (updated_parsed, ...) + pass if __name__ == "__main__": |