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:
while True:
bot.flow()
sleep(6)
sleep(10)
except:
traceback.print_exc()
bot.shutdown()

View File

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