aboutsummaryrefslogtreecommitdiff
path: root/source/utils.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 09:40:11 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 09:40:11 +0200
commit884b9441c52b639193b35610f5f1d70f2938a475 (patch)
treef634a14d74087f406da0809e2b20d14e1af7645c /source/utils.py
parentFixed encoding problem. (diff)
downloadnewspipe-884b9441c52b639193b35610f5f1d70f2938a475.tar.gz
newspipe-884b9441c52b639193b35610f5f1d70f2938a475.tar.bz2
newspipe-884b9441c52b639193b35610f5f1d70f2938a475.zip
Fixed comments.
Diffstat (limited to 'source/utils.py')
-rwxr-xr-xsource/utils.py2
1 files changed, 1 insertions, 1 deletions
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:
bgstack15