summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2009-11-26 15:53:07 +0100
committerRob Crittenden <rcritten@redhat.com>2009-11-30 13:38:23 -0500
commit973f36c496b1c1f3bfdae2c5661edb935d5273ab (patch)
tree72d8b714fa9d66f00631c0a1920964e14392dbbb /ipalib/cli.py
parentce72b59f55a7a90b543305033dcded04dd3ab92e (diff)
downloadfreeipa-973f36c496b1c1f3bfdae2c5661edb935d5273ab.tar.gz
freeipa-973f36c496b1c1f3bfdae2c5661edb935d5273ab.tar.xz
freeipa-973f36c496b1c1f3bfdae2c5661edb935d5273ab.zip
Fix Bool parameter type. It was impossible to set it to FALSE.
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r--ipalib/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index f54e6e754..64ace0359 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -764,7 +764,7 @@ class cli(backend.Executioner):
)
if option.password and self.env.interactive:
kw['action'] = 'store_true'
- elif option.type is bool:
+ elif option.type is bool and option.autofill:
if option.default is True:
kw['action'] = 'store_false'
else: