solved loop bug

master
b3yond 2018-03-28 23:50:55 +02:00
parent c0c060a7ae
commit 85fcd06e26
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ if __name__ == '__main__':
for status in reports:
if not user.is_appropriate(status):
continue
for bot in bots:
bot.post(user, status)
for bot2 in bots:
bot2.post(user, status)
time.sleep(60) # twitter rate limit >.<
except:
logger.error('Shutdown', exc_info=True)