summaryrefslogtreecommitdiffstats
path: root/ipaserver/plugins/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/plugins/config.py')
-rw-r--r--ipaserver/plugins/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/plugins/config.py b/ipaserver/plugins/config.py
index 95bbb49cc..6407fcc3b 100644
--- a/ipaserver/plugins/config.py
+++ b/ipaserver/plugins/config.py
@@ -293,7 +293,7 @@ class config_mod(LDAPUpdate):
for field in entry_attrs[k].split(',')]
# test if all base types (without sub-types) are allowed
for a in attributes:
- a, tomato, olive = a.partition(';')
+ a, _dummy, _dummy = a.partition(';')
if a not in allowed_attrs:
raise errors.ValidationError(
name=k, error=_('attribute "%s" not allowed') % a
@@ -325,7 +325,7 @@ class config_mod(LDAPUpdate):
if self.api.Object[obj].uuid_attribute:
checked_attrs = checked_attrs + [self.api.Object[obj].uuid_attribute]
for obj_attr in checked_attrs:
- obj_attr, tomato, olive = obj_attr.partition(';')
+ obj_attr, _dummy, _dummy = obj_attr.partition(';')
if obj_attr in OPERATIONAL_ATTRIBUTES:
continue
if obj_attr in self.api.Object[obj].params and \