diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2009-01-22 09:58:35 -0700 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-02-03 15:29:00 -0500 |
commit | 6aadeb9aea60165d9c68b348dae4df456b00dfc4 (patch) | |
tree | 93f957952dd32d52eef0197d533df601b7804925 /ipalib/crud.py | |
parent | 529819b02b1c6e78b85481b417ae896b7237f0e2 (diff) | |
download | freeipa-6aadeb9aea60165d9c68b348dae4df456b00dfc4.tar.gz freeipa-6aadeb9aea60165d9c68b348dae4df456b00dfc4.tar.xz freeipa-6aadeb9aea60165d9c68b348dae4df456b00dfc4.zip |
Added Object.params_minus() method; various small tweaks
Diffstat (limited to 'ipalib/crud.py')
-rw-r--r-- | ipalib/crud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/crud.py b/ipalib/crud.py index bf33b7ab4..5bae4fbc3 100644 --- a/ipalib/crud.py +++ b/ipalib/crud.py @@ -85,7 +85,7 @@ class PKQuery(frontend.Method): """ def get_args(self): - yield self.obj.primary_key.clone(query=True, multivalue=True) + yield self.obj.primary_key.clone(query=True) class Retrieve(PKQuery): |