Merge pull request #58 from vills/fix_quoting
fix requests without object_name
This commit is contained in:
commit
9a2ce5e472
@ -852,7 +852,7 @@ class Swift3Middleware(object):
|
|||||||
|
|
||||||
def get_controller(self, env, path):
|
def get_controller(self, env, path):
|
||||||
container, obj = split_path(path, 0, 2, True)
|
container, obj = split_path(path, 0, 2, True)
|
||||||
d = dict(container_name=container, object_name=unquote(obj))
|
d = dict(container_name=container, object_name=unquote(obj) if obj is not None else obj)
|
||||||
|
|
||||||
if 'QUERY_STRING' in env:
|
if 'QUERY_STRING' in env:
|
||||||
args = dict(urlparse.parse_qsl(env['QUERY_STRING'], 1))
|
args = dict(urlparse.parse_qsl(env['QUERY_STRING'], 1))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user