diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-08-18 08:13:54 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-08-18 08:13:54 (GMT) |
commit | 56072df8b03506882b94bc292474d6853c055095 (patch) | |
tree | 319f42c23a06d7bfab5b6512f32ff149931e4cc6 | |
parent | 8fc06463efcc7a596897a3b0d4ff3848cb726f15 (diff) | |
download | pykolab-56072df8b03506882b94bc292474d6853c055095.tar.gz |
Actually push the value of an attribute to set in set_entry_attribute()
-rw-r--r-- | pykolab/auth/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pykolab/auth/__init__.py b/pykolab/auth/__init__.py index b75f9c3..fd02083 100644 --- a/pykolab/auth/__init__.py +++ b/pykolab/auth/__init__.py @@ -264,8 +264,8 @@ class Auth(pykolab.base.Base): def search_mail_address(self, domain, mail_address): return self._auth._search_mail_address(domain, mail_address) - def set_entry_attribute(self, domain, entry, attribute): - return self._auth.set_entry_attribute(entry, attribute) + def set_entry_attribute(self, domain, entry, attribute, value): + return self._auth.set_entry_attribute(entry, attribute, value) def set_entry_attributes(self, domain, entry, attributes): return self._auth.set_entry_attributes(entry, attributes) |