diff options
Diffstat (limited to 'conf/__init__.py')
-rw-r--r-- | conf/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/__init__.py b/conf/__init__.py index e24111dc..e714a7bf 100644 --- a/conf/__init__.py +++ b/conf/__init__.py @@ -93,7 +93,7 @@ class Settings(object): master_value = getattr(self, attr) # Check if parameter value was modified by CLI option cli_value = get_test_param(attr, None) - if cli_value: + if cli_value is not None: # TRAFFIC dictionary is not overridden by CLI option # but only updated by specified values if attr == 'TRAFFIC': |