From 2e677444701d1c0295fa126b056d26c7468f9862 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Thu, 28 Apr 2011 18:47:39 +0000 Subject: 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 --- pynslcd/ether.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pynslcd/ether.py') 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(':'))) -- cgit v1.2.3