mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-22 23:23:30 -06:00
pylint: fix redefine-in-handler
Reviewed-By: Tomas Krizek <tkrizek@redhat.com> Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
This commit is contained in:
parent
cdecbcd0a1
commit
568f9da331
@ -190,9 +190,9 @@ def del_link(realm, replica1, replica2, dirman_passwd, force=False):
|
||||
|
||||
# Find the DN of the replication agreement to remove
|
||||
replica2_dn = None
|
||||
for e in repl_list:
|
||||
if e.single_value.get('nsDS5ReplicaHost') == replica1:
|
||||
replica2_dn = e.dn
|
||||
for entry in repl_list:
|
||||
if entry.single_value.get('nsDS5ReplicaHost') == replica1:
|
||||
replica2_dn = entry.dn
|
||||
break
|
||||
|
||||
# This should never happen
|
||||
@ -203,8 +203,8 @@ def del_link(realm, replica1, replica2, dirman_passwd, force=False):
|
||||
print("'%s' has no replication agreement for '%s'" % (replica2, replica1))
|
||||
if not force:
|
||||
return
|
||||
except Exception as e:
|
||||
print("Failed to get data from '%s': %s" % (replica2, e))
|
||||
except Exception as exc:
|
||||
print("Failed to get data from '%s': %s" % (replica2, exc))
|
||||
if not force:
|
||||
sys.exit(1)
|
||||
|
||||
@ -213,8 +213,8 @@ def del_link(realm, replica1, replica2, dirman_passwd, force=False):
|
||||
try:
|
||||
repl2.delete_agreement(replica1, replica2_dn)
|
||||
repl2.delete_referral(replica1, repl1.port)
|
||||
except Exception as e:
|
||||
print("Unable to remove agreement on %s: %s" % (replica2, e))
|
||||
except Exception as exc:
|
||||
print("Unable to remove agreement on %s: %s" % (replica2, exc))
|
||||
failed = True
|
||||
|
||||
if failed:
|
||||
|
@ -2035,9 +2035,9 @@ class LDAPSearch(BaseLDAPCommand, crud.Search):
|
||||
entries.sort(key=sort_key)
|
||||
|
||||
if not options.get('raw', False):
|
||||
for e in entries:
|
||||
self.obj.get_indirect_members(e, attrs_list)
|
||||
self.obj.convert_attribute_members(e, *args, **options)
|
||||
for entry in entries:
|
||||
self.obj.get_indirect_members(entry, attrs_list)
|
||||
self.obj.convert_attribute_members(entry, *args, **options)
|
||||
|
||||
for (i, e) in enumerate(entries):
|
||||
entries[i] = entry_to_dict(e, **options)
|
||||
@ -2051,9 +2051,9 @@ class LDAPSearch(BaseLDAPCommand, crud.Search):
|
||||
|
||||
try:
|
||||
ldap.handle_truncated_result(truncated)
|
||||
except errors.LimitsExceeded as e:
|
||||
except errors.LimitsExceeded as exc:
|
||||
add_message(options['version'], result, SearchResultTruncated(
|
||||
reason=e))
|
||||
reason=exc))
|
||||
|
||||
return result
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user