diff options
Diffstat (limited to 'rasis.py')
| -rw-r--r-- | rasis.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -173,7 +173,7 @@ def main(): return data = response.json() - news_posts = data["news_posts"] + news_posts = sorted(data["news_posts"], key=lambda x: x.get('timestamp', 0)) posts_to_make = [] for post in news_posts: |
