mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix left-over Python 3 syntax errors
Reviewed-By: Tomas Babej <tbabej@redhat.com>
This commit is contained in:
committed by
Martin Basti
parent
ab75964b9a
commit
6417931a9f
@@ -438,11 +438,11 @@ class DsInstance(service.Service):
|
||||
for r in res:
|
||||
try:
|
||||
self.admin_conn.delete_entry(r)
|
||||
except Exception, e:
|
||||
except Exception as e:
|
||||
root_logger.critical(
|
||||
"Error during SASL mapping removal: %s", e)
|
||||
raise
|
||||
except Exception, e:
|
||||
except Exception as e:
|
||||
root_logger.critical("Error while enumerating SASL mappings %s", e)
|
||||
raise
|
||||
|
||||
|
||||
Reference in New Issue
Block a user