Browse Source

Correction

master
guimoz 9 years ago
parent
commit
133a7f366c
  1. 2
      roulette.py

2
roulette.py

@ -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

Loading…
Cancel
Save