diff options
Diffstat (limited to 'glanceclient/common/http.py')
-rw-r--r-- | glanceclient/common/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glanceclient/common/http.py b/glanceclient/common/http.py index b5bea8a..a5fb153 100644 --- a/glanceclient/common/http.py +++ b/glanceclient/common/http.py @@ -66,7 +66,7 @@ def encode_headers(headers): for h, v in headers.items(): if v is not None: # if the item is token, do not quote '+' as well. - safe = '+/' if h in TOKEN_HEADERS else '/' + safe = '=+/' if h in TOKEN_HEADERS else '/' if six.PY2: # incoming items may be unicode, so get them into something # the py2 version of urllib can handle before percent encoding |