1
0
Fork 0
mirror of https://github.com/Thor77/TeamspeakStats.git synced 2025-07-09 00:48:42 -04:00

use None as default for ident_map in tsstats.log.parse_logs

This commit is contained in:
Thor77 2016-05-19 21:46:22 +02:00
parent 2f0755c1fc
commit 61421c588a

View file

@ -14,7 +14,7 @@ re_disconnect_invoker = re.compile(
logger = logging.getLogger('tsstats') logger = logging.getLogger('tsstats')
def parse_logs(log_path, ident_map={}): def parse_logs(log_path, ident_map=None):
clients = Clients(ident_map) clients = Clients(ident_map)
# find all log-files and open them TODO: move this into main # find all log-files and open them TODO: move this into main