From 133a7f366c9a84282e8f9cc7c82185c4f3c10080 Mon Sep 17 00:00:00 2001 From: guimoz Date: Sat, 28 Jan 2017 17:15:22 +0100 Subject: [PATCH] Correction --- roulette.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roulette.py b/roulette.py index d4c1b80..0257d3b 100644 --- a/roulette.py +++ b/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