use None as default for ident_map in tsstats.log.parse_logs
This commit is contained in:
parent
2f0755c1fc
commit
61421c588a
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue