fixed wrong exception

master
b3yond 2019-02-19 16:16:21 +01:00
parent eb2bf5a063
commit 35bbe5f075
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class TwitterBot(Bot):
def post(self, user, report):
try:
api = self.get_api(user)
except IndexError:
except TypeError:
return # no twitter account for this user.
try:
if report.source == self: