Clean up imports

This commit is contained in:
Matt Martz 2013-01-12 10:48:58 -06:00
parent 6c33c1eb24
commit 38fa36fc4d
1 changed files with 8 additions and 8 deletions

View File

@ -16,21 +16,21 @@
# under the License. # under the License.
import urllib2 import urllib2
import math
import time
import os
import sys
import threading
from Queue import Queue
from xml.dom import minidom as DOM
try: try:
from urlparse import parse_qs from urlparse import parse_qs
except ImportError: except ImportError:
from cgi import parse_qs from cgi import parse_qs
import math
from xml.dom import minidom as DOM
import time
import os
import sys
try: try:
from hashlib import md5 from hashlib import md5
except: except ImportError:
from md5 import md5 from md5 import md5
import threading
from Queue import Queue
def distance(origin, destination): def distance(origin, destination):