diff --git a/deploy/utils/config.py b/deploy/utils/config.py index eb7914806..7e7ffb79c 100644 --- a/deploy/utils/config.py +++ b/deploy/utils/config.py @@ -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)