remove problematic debug statement when rss feed has no {link} section. fixes #11
This commit is contained in:
parent
4519ee0a1b
commit
3fa5969577
|
@ -106,8 +106,7 @@ class Main(object):
|
||||||
if 'id' not in entry:
|
if 'id' not in entry:
|
||||||
# malformed feed entry, skip
|
# malformed feed entry, skip
|
||||||
continue
|
continue
|
||||||
logging.debug('found feed entry %s, %s', entry['id'], entry['title'])
|
logging.debug('found feed entry {entryid}'.format(entryid=entry['id']))
|
||||||
|
|
||||||
|
|
||||||
rss = {
|
rss = {
|
||||||
'id': entry['id'],
|
'id': entry['id'],
|
||||||
|
|
Loading…
Reference in a new issue