diff options
Diffstat (limited to 'helm')
-rw-r--r-- | helm/plugin/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helm/plugin/tasks.py b/helm/plugin/tasks.py index ac27764..be59472 100644 --- a/helm/plugin/tasks.py +++ b/helm/plugin/tasks.py @@ -168,7 +168,7 @@ def str_to_bool(s): elif s == 'False' or s == 'false': return False else: - raise False + raise ValueError('Require [Tt]rue or [Ff]alse; got: {0}'.format(s)) def get_config_json(config_json, config_path, config_opt_f, config_file_nm): |