diff options
Diffstat (limited to 'source')
-rwxr-xr-x | source/feedgetter.py | 2 | ||||
-rwxr-xr-x | source/utils.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py index 88b1c228..ce1cba1b 100755 --- a/source/feedgetter.py +++ b/source/feedgetter.py @@ -116,7 +116,7 @@ class FeedGetter(object): def add_into_database(self, feed_link, feed_original=None): """ - Add the articles of the feed 'a_feed' in the SQLite base. + Add the articles of the feed 'a_feed' in the database. """ a_feed = feedparser.parse(feed_link, handlers = [self.proxy]) if a_feed['entries'] == []: diff --git a/source/utils.py b/source/utils.py index e35a34df..d39e402f 100755 --- a/source/utils.py +++ b/source/utils.py @@ -275,7 +275,7 @@ def change_feed_url(old_feed_url, new_feed_url): def remove_feed(feed_url): """ - Remove a feed from the file feed.lst and from the SQLite base. + Remove a feed from the file feed.lst and from the database. """ with opened_w_error(conf.FEED_LIST, "r") as (f, err): if err: |