diff options
| -rwxr-xr-x | notify.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
