From d6b0ff8f77d051994a49b62e4707d30712b4eed0 Mon Sep 17 00:00:00 2001 From: Saurabh Chaturvedi Date: Thu, 11 Apr 2019 01:39:24 +0530 Subject: [PATCH] Fix sleep time --- do_scripts/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/do_scripts/bot.py b/do_scripts/bot.py index 6975b5e..f4664cb 100644 --- a/do_scripts/bot.py +++ b/do_scripts/bot.py @@ -107,7 +107,7 @@ def main(): tweet = next(iterator) t.statuses.update(status=tweet) print(tweet, end='\n') - time.sleep(10) # Sleep for 10 minutes. + time.sleep(600) # Sleep for 10 minutes. except StopIteration: news_iterators[i] = globals()[newsfuncs[i]]()