Fixed undefined reference

This commit is contained in:
Fabio Manganiello 2019-07-17 14:57:50 +02:00
parent ca030b06e0
commit cd9bdbb1c8
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class RssUpdates(HttpRequest):
def __init__(self, url, title=None, headers=None, params=None, max_entries=None,
mercury_api_key=None, digest_format=None, *argv, **kwargs):
self.workdir = os.path.join(os.path.expanduser(Config.get('workdir')), 'feeds')
self.dbfile = os.path.join(workdir, 'rss.db')
self.dbfile = os.path.join(self.workdir, 'rss.db')
self.url = url
self.title = title
self.max_entries = max_entries