From 3f689da8aca7d075ac1e301301ea2630b637c3df Mon Sep 17 00:00:00 2001 From: bakatrouble Date: Mon, 25 Nov 2019 15:45:10 +0300 Subject: [PATCH] fix nerfnow feed --- feeds/modules/nerfnow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/modules/nerfnow.py b/feeds/modules/nerfnow.py index f22b0d7..5ab9ff4 100644 --- a/feeds/modules/nerfnow.py +++ b/feeds/modules/nerfnow.py @@ -16,7 +16,7 @@ class NerfNowFeedModuleConfig(FeedModuleConfig): def execute(self, bot: TeleBot, chat_id, last_id): if last_id is None: - last_id = 0 + last_id = '' feed = feedparser.parse('http://feeds.feedburner.com/nerfnow/full') for e in reversed(feed['entries']):