From 755931de722fc25a16ff0103ccaa1c10cda116b2 Mon Sep 17 00:00:00 2001 From: Cruz Monrreal II Date: Fri, 25 Jan 2019 11:37:56 -0600 Subject: [PATCH] Added None check for min in config tools --- tools/config/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/config/__init__.py b/tools/config/__init__.py index 36606ead92..74e4071af8 100644 --- a/tools/config/__init__.py +++ b/tools/config/__init__.py @@ -1209,7 +1209,8 @@ class Config(object): min = int(str(min), 0) if min is not None else None max = int(str(max), 0) if max is not None else None - if (value < min or (value > max if max is not None else False)): + if ((value < min if min is not None else False) or + (value > max if max is not None else False)): err_msg += "\nInvalid config range for %s, is not in the required range: [%s:%s]"\ % (param, min if min is not None else "-inf",