summaryrefslogtreecommitdiff
path: root/nova/api/openstack/urlmap.py
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2019-04-10 10:02:03 +0100
committerStephen Finucane <sfinucan@redhat.com>2019-04-12 16:23:49 +0100
commit3e65f778bdb51e2cf0693f4e9b1b4539ea5c294c (patch)
treed1ae560a80cb0eb05eeab396b0eef710aa2250fb /nova/api/openstack/urlmap.py
parente18b79ef878795d8445fb7c85202a6f51f125948 (diff)
downloadnova-3e65f778bdb51e2cf0693f4e9b1b4539ea5c294c.tar.gz
Bump to hacking 1.1.0
This brings in a couple of new checks which must be addressed, many of which involve a rather large amount of changes, so these are ignored for now. A series of follow-up changes will resolved these. 'pycodestyle' is added as a dependency rather than it being pulled in transitively. This is necessary since we're using it in tests. Change-Id: I35c654bd39f343417e0a1124263ff31dcd0b05c9 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'nova/api/openstack/urlmap.py')
-rw-r--r--nova/api/openstack/urlmap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/urlmap.py b/nova/api/openstack/urlmap.py
index 8482f9b8e5..03f462e9d3 100644
--- a/nova/api/openstack/urlmap.py
+++ b/nova/api/openstack/urlmap.py
@@ -19,13 +19,13 @@ from oslo_log import log as logging
import paste.urlmap
import six
+from nova.api.openstack import wsgi
+
if six.PY2:
import urllib2
else:
from urllib import request as urllib2
-from nova.api.openstack import wsgi
-
LOG = logging.getLogger(__name__)