mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-06 13:44:42 -04:00
Fix not using defined variable for match-access
possibly leading to slower access-times
This commit is contained in:
parent
4b261ed321
commit
8d18b9c4ae
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ def _bundle_logs(logs):
|
|||
key=lambda tl: tl.timestamp)
|
||||
else:
|
||||
# if not exists, just create a list
|
||||
vserver_logfiles[match['sid']] = [tl]
|
||||
vserver_logfiles[sid] = [tl]
|
||||
else:
|
||||
# fallback to plain sorting
|
||||
vserver_logfiles.setdefault('', [])\
|
||||
|
|
Loading…
Add table
Reference in a new issue