diff options
Diffstat (limited to 'zdf.py')
-rwxr-xr-x | zdf.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -68,7 +68,12 @@ def zdf(feed): 'guid': s_guid, }) - return title, url, description, content + return { + "title": title, + "url": url, + "description": description, + "content": content, + } except Exception as exc: logging.error('Working with zdf failed.', exc_info=exc) return None |