Revert "Make the OUI script use python3"

This commit is contained in:
Simone Margaritelli 2018-02-24 21:24:53 +01:00 committed by GitHub
parent e753245221
commit 22b0573894
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22884 additions and 22884 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/python
import os
base = os.path.dirname(os.path.realpath(__file__))
@ -25,7 +25,7 @@ for line in lines:
code = "map[string]string {\n"
for prefix, vendor in m.items():
for prefix, vendor in m.iteritems():
code += " \"%s\": \"%s\",\n" % ( prefix, vendor )
code += "}\n"