pull/1646/head
Tingquan Gao 2022-01-14 11:40:58 +00:00 committed by Tingquan Gao
parent 10c93c55d1
commit 58dccfd024
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ def override(dl, ks, v):
if len(ks) == 1:
# assert ks[0] in dl, ('{} is not exist in {}'.format(ks[0], dl))
if not ks[0] in dl:
logger.warning('A new filed ({}) detected!'.format(ks[0], dl))
logger.warning('A new filed ({}) detected!'.format(ks[0]))
dl[ks[0]] = str2num(v)
else:
override(dl[ks[0]], ks[1:], v)