Merge "Bug 925372: remove deprecated webob attributes (and also specify stable webob version in pip-requires)"

This commit is contained in:
Jenkins 2012-02-16 18:57:11 +00:00 committed by Gerrit Code Review
commit d8f39dbd4d
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