diff options
Diffstat (limited to 'pynslcd/network.py')
-rw-r--r-- | pynslcd/network.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pynslcd/network.py b/pynslcd/network.py index 88778d7..dc91d68 100644 --- a/pynslcd/network.py +++ b/pynslcd/network.py @@ -1,7 +1,7 @@ # network.py - lookup functions for network names and addresses # -# Copyright (C) 2011, 2012 Arthur de Jong +# Copyright (C) 2011, 2012, 2013 Arthur de Jong # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -21,6 +21,7 @@ import cache import common import constants +import search attmap = common.Attributes(cn='cn', @@ -28,7 +29,7 @@ attmap = common.Attributes(cn='cn', filter = '(objectClass=ipNetwork)' -class Search(common.Search): +class Search(search.LDAPSearch): canonical_first = ('cn', ) required = ('cn', ) |