Correction

This commit is contained in:
guimoz 2017-01-28 17:15:22 +01:00
parent ffa850c32e
commit 133a7f366c

View file

@ -214,7 +214,7 @@ def get_players_not_banned():
immunity = f.read()
result = []
for user in not_banned:
if user.['firstname']+' '+usr.['name'] not in immunity:
if user['firstname']+' '+usr['name'] not in immunity:
result.append(user)
return result