Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/pynslcd/alias.py
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2011-04-28 20:47:39 +0200
committerArthur de Jong <arthur@arthurdejong.org>2011-04-28 20:47:39 +0200
commit2e677444701d1c0295fa126b056d26c7468f9862 (patch)
tree94ce222bb9f66a02a234aeca814ee44b78e98812 /pynslcd/alias.py
parentad76395a82a71d1ff872c7c627bf6dada7116ee1 (diff)
put standard library imports before application imports and remove some unused imports
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1438 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'pynslcd/alias.py')
-rw-r--r--pynslcd/alias.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/pynslcd/alias.py b/pynslcd/alias.py
index 5126466..979d266 100644
--- a/pynslcd/alias.py
+++ b/pynslcd/alias.py
@@ -1,7 +1,7 @@
# alias.py - lookup functions for aliasnet addresses
#
-# 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,12 +18,11 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
+import ldap.filter
+
import constants
import common
-import ldap
-import ldap.filter
-
class AliasRequest(common.Request):