This commit is contained in:
root 2017-01-31 18:10:54 +01:00
parent 64bddad4b3
commit 68d31c1502
2 changed files with 1320 additions and 1 deletions

1319
dump.sql Normal file

File diff suppressed because it is too large Load diff

View file

@ -108,7 +108,7 @@ def get_player_from_full_name(firstname, name):
machines.id,machines.ip,players.ban_end
from players
inner join machines on players.id=machines.player_id
where players.firstname=%s and players.name=%s"""% firstname, name)
where players.firstname=%s and players.name=%s"""% (firstname, name))
row = cur.fetchone()
con.close()