diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-04-28 20:47:39 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-04-28 20:47:39 +0200 |
commit | 2e677444701d1c0295fa126b056d26c7468f9862 (patch) | |
tree | 94ce222bb9f66a02a234aeca814ee44b78e98812 /pynslcd/ether.py | |
parent | ad76395a82a71d1ff872c7c627bf6dada7116ee1 (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/ether.py')
-rw-r--r-- | pynslcd/ether.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pynslcd/ether.py b/pynslcd/ether.py index 9c77ea7..e5724b8 100644 --- a/pynslcd/ether.py +++ b/pynslcd/ether.py @@ -18,12 +18,12 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 USA -import constants -import common - import struct import ldap.filter +import constants +import common + def ether_aton(ether): return struct.pack('BBBBBB', *(int(x, 16) for x in ether.split(':'))) |