From ad76048126805124d5caef850923825a8181fce2 Mon Sep 17 00:00:00 2001 From: guimoz Date: Tue, 31 Jan 2017 17:56:29 +0100 Subject: [PATCH] Typo --- roulette.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roulette.py b/roulette.py index 78b256f..f5cd5db 100644 --- a/roulette.py +++ b/roulette.py @@ -210,7 +210,7 @@ def ban(player_id, target_id, success): cur.execute("""insert into bans (player_id,target_id,success,time) values %i,%i,%i,%f"""% (player['id'], target['id'], \ - success and 1 or 0, time()) + success and 1 or 0, time())) con.commit() con.close()