diff options
Diffstat (limited to 'pynslcd/passwd.py')
-rw-r--r-- | pynslcd/passwd.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/pynslcd/passwd.py b/pynslcd/passwd.py index 80b2a4a..5176244 100644 --- a/pynslcd/passwd.py +++ b/pynslcd/passwd.py @@ -1,7 +1,7 @@ # passwd.py - lookup functions for user account information # -# Copyright (C) 2010 Arthur de Jong +# Copyright (C) 2010, 2011 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 @@ -18,14 +18,12 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 USA -import constants -import common -import cfg - -import logging import ldap import ldap.filter +import constants +import common + class PasswdRequest(common.Request): |