1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Fixed error when accessing files via atmos where keys contain spaces

This commit is contained in:
Peter Vawser 2014-01-24 16:56:52 +10:30
parent 272bc6b2a2
commit 71aa22b981
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ module Fog
request({
:expects => 200,
:method => 'GET',
:path => "namespace/" + namespace,
:path => "namespace/" + URI.escape(namespace),
:query => {},
:parse => true
}.merge(options))

View file

@ -8,7 +8,7 @@ module Fog
request({
:expects => 200,
:method => 'HEAD',
:path => "namespace/" + namespace,
:path => "namespace/" + URI.escape(namespace),
:query => {},
:parse => true
}.merge(options))