Use smarter order for RSS.dict

This commit is contained in:
pictuga 2014-01-13 00:07:04 +01:00
parent 3d78cfb638
commit ec55f5e856

@ -408,7 +408,7 @@ class FeedParserAtom(FeedParser):
class FeedItem(FeedBase):
timeFormat = ''
dic = ('title', 'link', 'isPermaLink', 'desc', 'content', 'id', 'time', 'updated')
dic = ('title', 'link', 'desc', 'content', 'id', 'isPermaLink', 'time', 'updated')
def __init__(self, xml=None, tag='atom:feed'):
if xml is None: