extract_content is supposed to be a boolean
This commit is contained in:
parent
5293f5b203
commit
6aaa2fa1ea
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class RssUpdates(HttpRequest):
|
|||
'Chrome/62.0.3202.94 Safari/537.36'
|
||||
|
||||
def __init__(self, url, title=None, headers=None, params=None, max_entries=None,
|
||||
extract_content=None, digest_format=None, *argv, **kwargs):
|
||||
extract_content=False, digest_format=None, *argv, **kwargs):
|
||||
self.workdir = os.path.join(os.path.expanduser(Config.get('workdir')), 'feeds')
|
||||
self.dbfile = os.path.join(self.workdir, 'rss.db')
|
||||
self.url = url
|
||||
|
|
Loading…
Reference in a new issue