You can fix this by editing syndication/bin/syndication.py as follows: 170c170
< latest_date = None
---
> latest_date = time.gmtime(0)
343c343
< last_entry_date = None
---
> last_entry_date = time.gmtime(0)
347c347
< last_entry_date_retrieved = None
---
> last_entry_date_retrieved = time.gmtime(0)
383c383
< if last_entry_date_retrieved is not None and last_entry_date_retrieved > last_entry_date:
---
> if last_entry_date_retrieved !=0 and last_entry_date_retrieved > last_entry_date:
... View more