summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/crud.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ipalib/crud.py b/ipalib/crud.py
index 990fc39bc..e19382e91 100644
--- a/ipalib/crud.py
+++ b/ipalib/crud.py
@@ -117,7 +117,7 @@ class Update(PKQuery):
for option in super(Update, self).get_options():
yield option
for option in self.obj.params_minus_pk():
- yield option.clone(attribute=True, required=False)
+ yield option.clone(attribute=True, required=False, autofill=False)
if not self.extra_options_first:
for option in super(Update, self).get_options():
yield option
@@ -141,7 +141,9 @@ class Search(frontend.Method):
for option in super(Search, self).get_options():
yield option
for option in self.obj.params_minus(self.args):
- yield option.clone(attribute=True, query=True, required=False)
+ yield option.clone(
+ attribute=True, query=True, required=False, autofill=False
+ )
if not self.extra_options_first:
for option in super(Search, self).get_options():
yield option