summaryrefslogtreecommitdiffstats
path: root/ipalib/frontend.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/frontend.py')
-rw-r--r--ipalib/frontend.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/frontend.py b/ipalib/frontend.py
index 3ae143ef3..61cba513b 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -651,6 +651,8 @@ class Command(plugable.Plugin):
if kw.get(param.name, None) is None:
if param.required:
yield (param.name, param.get_default(**kw))
+ elif isinstance(param.type, ipa_types.Bool):
+ yield (param.name, param.default)
else:
yield (param.name, None)