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
1 changed files with 1 additions and 1 deletions

View File

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