# HG changeset patch # User Dirk Olmes # Date 1301536246 -7200 # Node ID e4038dd8cc0ea5d76d4c661590759334978467ca # Parent c17a224bc251773f8991aaa4e3b069e7d844da5f add a comment about a Feedparser bug wrt python3 diff -r c17a224bc251 -r e4038dd8cc0e FeedUpdater.py --- a/FeedUpdater.py Thu Mar 31 03:15:39 2011 +0200 +++ b/FeedUpdater.py Thu Mar 31 03:50:46 2011 +0200 @@ -21,6 +21,7 @@ return session.query(Feed).filter(Feed.next_update < datetime.now()) def createNewFeed(url, session): + # when updating to python3 see http://code.google.com/p/feedparser/issues/detail?id=260 result = feedparser.parse(url) if result.has_key("title"): title = result["feed"].title