Remove an unused imported module

The urlparse module is imported in neutronclient/client.py but not used, so we
can safely remove it.

Change-Id: Ia9e950e754d00ee4f28172f3e685b892748991e2
This commit is contained in:
Cyril Roelandt
2013-12-18 23:31:27 +01:00
parent 39b15671f8
commit d149466b6c

View File

@@ -21,11 +21,6 @@ except ImportError:
import simplejson as json
import logging
import os
import urlparse
# Python 2.5 compat fix
if not hasattr(urlparse, 'parse_qsl'):
import cgi
urlparse.parse_qsl = cgi.parse_qsl
import httplib2