From e9f1e4e72454638067ac092c8eac9300cf30f636 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 24 Apr 2020 17:24:57 +0200 Subject: [PATCH] Debug --- notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notify.py b/notify.py index 8a57df5..9168dc6 100755 --- a/notify.py +++ b/notify.py @@ -19,6 +19,6 @@ data=client.games.get_ongoing() for game in data: opponent=game["opponent"]["username"] lastMove=game["lastMove"] - if not(game["isMyTurn"]): + if game["isMyTurn"]: notify_send("Lichess ("+opponent+")","It is your turn !\n Your oppenent played "+lastMove)