Bug 925372: remove deprecated webob attributes

(and also specify stable webob version in pip-requires)

Change-Id: Id8dd53368f88042b71fc73a5f94803e635c4140b
This commit is contained in:
Salvatore Orlando 2012-02-02 10:54:33 +00:00
parent 1eb3c693b5
commit a56ad238f2
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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)

View File

@ -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