diff options
Diffstat (limited to 'feedgetter.py')
-rwxr-xr-x | feedgetter.py | 2 |
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. |