Update tools/config/__init__.py

Co-Authored-By: kegilbert <K.Gilbert.CH@gmail.com>
pull/8673/head
Brian Daniels 2018-11-15 11:43:41 -06:00 committed by GitHub
parent 9d9cd84942
commit 5ec1d7c221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1102,7 +1102,7 @@ class Config(object):
# Numerical accepted value check
elif accepted is not None and value not in accepted:
err_msg += "\nInvalid config range for %s, is not an accepted value: %s"\
err_msg += "\nInvalid value for %s, is not an accepted value: %s"\
% (param, ", ".join(map(str, accepted)))
else:
if min is not None or max is not None: