Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/pynslcd/ether.py
diff options
context:
space:
mode:
Diffstat (limited to 'pynslcd/ether.py')
-rw-r--r--pynslcd/ether.py6
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(':')))