diff --git a/Calendar/RssInterface.py b/Calendar/RssInterface.py index 4801e6f..031d092 100644 --- a/Calendar/RssInterface.py +++ b/Calendar/RssInterface.py @@ -25,4 +25,4 @@ class RssInterface(DataSourceInterface): return [post for post in self.loaded_posts if post_filter(post)] def __sort_posts__(self): - self.loaded_posts.sort(key=lambda x : x.datetime) \ No newline at end of file + self.loaded_posts.sort(key=lambda x : x.datetime, reverse=True) \ No newline at end of file