Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/pynslcd/ether.py
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2013-03-09 23:02:29 +0100
committerArthur de Jong <arthur@arthurdejong.org>2013-03-09 23:27:00 +0100
commit4e603409f76c14ba7b11c437eac6116a2afce603 (patch)
tree2d27a197193b6fbde8c1ef7fc47c12154e575d9d /pynslcd/ether.py
parent975ee2ce45d050d1f8aafacfe58d035fff339e79 (diff)
move Search class to search module
Diffstat (limited to 'pynslcd/ether.py')
-rw-r--r--pynslcd/ether.py3
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')