summaryrefslogtreecommitdiffstats
path: root/ipalib/aci.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-08-13 09:27:13 -0400
committerRob Crittenden <rcritten@redhat.com>2009-08-20 09:20:56 -0400
commitd9c54cd83e8c676e34497fa135786a626d5d1fc7 (patch)
tree9f0b4defe1bbc50d96cfedabf5d2b591de8eac53 /ipalib/aci.py
parent8780751330871033b13fc8fbb7eb0588baf4417d (diff)
downloadfreeipa-d9c54cd83e8c676e34497fa135786a626d5d1fc7.tar.gz
freeipa-d9c54cd83e8c676e34497fa135786a626d5d1fc7.tar.xz
freeipa-d9c54cd83e8c676e34497fa135786a626d5d1fc7.zip
Clean up additional issues discovered with pylint and pychecker
Diffstat (limited to 'ipalib/aci.py')
-rwxr-xr-xipalib/aci.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/aci.py b/ipalib/aci.py
index 926334c35..3c4b2acb6 100755
--- a/ipalib/aci.py
+++ b/ipalib/aci.py
@@ -268,7 +268,7 @@ def extract_group_cns(aci_list, client):
try:
group = client.get_entry_by_dn(dn, ['cn'])
group_dn_to_cn[dn] = group.getValue('cn')
- except ipaerror.IPAError, e:
+ except Exception:
group_dn_to_cn[dn] = 'unknown'
return group_dn_to_cn