From ec55f5e85683c5a16caf921d309ad42895c4d527 Mon Sep 17 00:00:00 2001 From: pictuga Date: Mon, 13 Jan 2014 00:07:04 +0100 Subject: [PATCH] Use smarter order for RSS.dict --- morss/feeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss/feeds.py b/morss/feeds.py index 293453c..2d7f132 100644 --- a/morss/feeds.py +++ b/morss/feeds.py @@ -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: