diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2013-03-09 23:02:29 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2013-03-09 23:27:00 +0100 |
commit | 4e603409f76c14ba7b11c437eac6116a2afce603 (patch) | |
tree | 2d27a197193b6fbde8c1ef7fc47c12154e575d9d /pynslcd/ether.py | |
parent | 975ee2ce45d050d1f8aafacfe58d035fff339e79 (diff) |
move Search class to search module
Diffstat (limited to 'pynslcd/ether.py')
-rw-r--r-- | pynslcd/ether.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pynslcd/ether.py b/pynslcd/ether.py index e6975d5..d5d8c06 100644 --- a/pynslcd/ether.py +++ b/pynslcd/ether.py @@ -23,6 +23,7 @@ import struct import cache import common import constants +import search def ether_aton(ether): @@ -40,7 +41,7 @@ attmap = common.Attributes(cn='cn', macAddress='macAddress') filter = '(objectClass=ieee802Device)' -class Search(common.Search): +class Search(search.LDAPSearch): case_insensitive = ('cn', ) limit_attributes = ('cn', 'macAddress') |