1
0
Fork 0
mirror of synced 2024-06-03 03:04:33 +12:00

Fixed syntax error

This commit is contained in:
Phxntxm 2016-07-23 09:25:55 -05:00
parent af02f64f3c
commit ae44519302

View file

@ -14,7 +14,7 @@ def battlingOff(**kwargs):
if player1:
del battling[player1]
elif player2:
battling = {p1:p2 p1,p2 in battling.items() if not p2 == player2}
battling = {p1:p2 for p1,p2 in battling.items() if not p2 == player2}
config.saveContent('battling',battling)