From a56ad238f211eb25666124f77afa1e135052c6f7 Mon Sep 17 00:00:00 2001 From: Salvatore Orlando Date: Thu, 2 Feb 2012 10:54:33 +0000 Subject: [PATCH] Bug 925372: remove deprecated webob attributes (and also specify stable webob version in pip-requires) Change-Id: Id8dd53368f88042b71fc73a5f94803e635c4140b --- quantum/api/networks.py | 2 +- quantum/api/ports.py | 2 +- tools/pip-requires | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/quantum/api/networks.py b/quantum/api/networks.py index 9ad883e6d..29263807b 100644 --- a/quantum/api/networks.py +++ b/quantum/api/networks.py @@ -79,7 +79,7 @@ class Controller(common.QuantumController): """ filter_opts = {} - filter_opts.update(request.str_GET) + filter_opts.update(request.GET) networks = self._plugin.get_all_networks(tenant_id, filter_opts=filter_opts) # Inefficient, API-layer filtering diff --git a/quantum/api/ports.py b/quantum/api/ports.py index d9b15c0e8..09ee212df 100644 --- a/quantum/api/ports.py +++ b/quantum/api/ports.py @@ -58,7 +58,7 @@ class Controller(common.QuantumController): of ports returned by the plugin """ filter_opts = {} - filter_opts.update(request.str_GET) + filter_opts.update(request.GET) port_list = self._plugin.get_all_ports(tenant_id, network_id, filter_opts=filter_opts) diff --git a/tools/pip-requires b/tools/pip-requires index 3d63fac1e..572e82853 100644 --- a/tools/pip-requires +++ b/tools/pip-requires @@ -6,7 +6,7 @@ lxml==2.3 python-gflags==1.3 simplejson sqlalchemy -webob==1.0.8 +webob==1.1.1 webtest distribute>=0.6.24 -- 2.45.2