aboutsummaryrefslogtreecommitdiff
path: root/feedgetter.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-03-26 08:22:06 +0100
committercedricbonhomme <devnull@localhost>2010-03-26 08:22:06 +0100
commitea01b913b3a508ad6c45d999eca19a0d1cf5fddc (patch)
treea475f1ca8fa0277a9366f6a968a8396a352542bc /feedgetter.py
parentImprovement. HTML tags (of feed and article title) are now removed before ins... (diff)
downloadnewspipe-ea01b913b3a508ad6c45d999eca19a0d1cf5fddc.tar.gz
newspipe-ea01b913b3a508ad6c45d999eca19a0d1cf5fddc.tar.bz2
newspipe-ea01b913b3a508ad6c45d999eca19a0d1cf5fddc.zip
Some improvements and one bug fix.
Diffstat (limited to 'feedgetter.py')
-rwxr-xr-xfeedgetter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/feedgetter.py b/feedgetter.py
index 3dbe2e4c..278cc58d 100755
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -75,7 +75,7 @@ class FeedGetter(object):
# Protect this part of code.
self.locker.acquire()
- self.conn = sqlite3.connect("./var/feed.db", isolation_level = None)
+ self.conn = sqlite3.connect(utils.sqlite_base, isolation_level = None)
self.c = self.conn.cursor()
# Add the articles in the base.
bgstack15