diff options
| author | Martin Basti <mbasti@redhat.com> | 2016-03-20 21:32:27 +0100 |
|---|---|---|
| committer | Martin Basti <mbasti@redhat.com> | 2016-03-22 10:20:51 +0100 |
| commit | da0318d4d7dd369be136449e686b6fb46d0cc5d8 (patch) | |
| tree | 58980cecdefad1296cd51b4d8a53f1fb7b30a5c6 /ipalib/plugins | |
| parent | b66028af1815fbf7666b82ebeaa81ad56996a74f (diff) | |
Pylint: remove unnecessary-semicolon
Reviewed-By: Petr Spacek <pspacek@redhat.com>
Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com>
Diffstat (limited to 'ipalib/plugins')
| -rw-r--r-- | ipalib/plugins/aci.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/aci.py b/ipalib/plugins/aci.py index 60dbcee7f..0c46359f9 100644 --- a/ipalib/plugins/aci.py +++ b/ipalib/plugins/aci.py @@ -344,7 +344,7 @@ def _aci_to_kw(ldap, a, test=False, pkey_only=False): if _type_map[k] == target: kw['type'] = unicode(k) found = True - break; + break if not found: if target.startswith('('): kw['filter'] = unicode(target) @@ -792,7 +792,7 @@ class aci_find(crud.Search): for k in _type_map.keys(): if _type_map[k] == target and kw['type'] == k: found = True - break; + break if not found: try: results.remove(a) |
