forked from ticketfrei/ticketfrei
further increase delay to avoid hitting twitter rate limit
This commit is contained in:
parent
d2910f8516
commit
dc8ba181f7
|
@ -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()
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue