further increase delay to avoid hitting twitter rate limit

This commit is contained in:
b3yond 2017-07-12 00:12:26 +02:00
parent d2910f8516
commit dc8ba181f7
2 changed files with 2 additions and 2 deletions

View file

@ -199,7 +199,7 @@ if __name__ == "__main__":
try: try:
while True: while True:
bot.flow() bot.flow()
sleep(6) sleep(10)
except: except:
traceback.print_exc() traceback.print_exc()
bot.shutdown() bot.shutdown()

View file

@ -22,7 +22,7 @@ if __name__ == '__main__':
while True: while True:
statuses = mbot.retoot(statuses) statuses = mbot.retoot(statuses)
statuses = tbot.flow(statuses) statuses = tbot.flow(statuses)
time.sleep(6) time.sleep(10)
except: except:
traceback.print_exc() traceback.print_exc()
tbot.shutdown() tbot.shutdown()