From 52c9883ca9dac4fc4369646ac4c323168f9d3ba9 Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Fri, 9 Mar 2012 17:07:30 -0800 Subject: Replaced use of webob.Request.str_GET * Changed webob.Request.str_GET => webob.Request.GET to ensure compatibility with WebOb >= 1.2. * Fixes bug 950478 Change-Id: I21d0d477340d31caa4c92fa76270a392b5eb2cca --- nova/api/openstack/compute/servers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/api') diff --git a/nova/api/openstack/compute/servers.py b/nova/api/openstack/compute/servers.py index 2bfbfb745..5b5832eab 100644 --- a/nova/api/openstack/compute/servers.py +++ b/nova/api/openstack/compute/servers.py @@ -410,7 +410,7 @@ class Controller(wsgi.Controller): """ search_opts = {} - search_opts.update(req.str_GET) + search_opts.update(req.GET) context = req.environ['nova.context'] remove_invalid_options(context, search_opts, -- cgit