We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be5a344 commit 0625e19Copy full SHA for 0625e19
Lib/ldap/modlist.py
@@ -51,9 +51,9 @@ def modifyModlist(
51
modlist = []
52
attrtype_lower_map = {}
53
for a in old_entry.keys():
54
- attrtype_lower_map[str.lower(a)]=a
+ attrtype_lower_map[a.lower()]=a
55
for attrtype in new_entry.keys():
56
- attrtype_lower = str.lower(attrtype)
+ attrtype_lower = attrtype.lower()
57
if attrtype_lower in ignore_attr_types:
58
# This attribute type is ignored
59
continue
0 commit comments