[pkg-eucalyptus-commits] [SCM] managing cloud instances for Eucalyptus branch, experimental, updated. debian/2.1.3-1_experimental1

Garrett Holmstrom gholms at fedoraproject.org
Sat Mar 16 03:26:41 UTC 2013


The following commit has been merged in the experimental branch:
commit 5e336b92c43d9111072e877ac4dd1362ce833740
Author: Garrett Holmstrom <gholms at fedoraproject.org>
Date:   Tue Sep 4 10:28:16 2012 -0700

    Fix query parameter quoting

diff --git a/euca2ools/nc/auth.py b/euca2ools/nc/auth.py
index eaf6bd2..4a4f398 100644
--- a/euca2ools/nc/auth.py
+++ b/euca2ools/nc/auth.py
@@ -161,7 +161,7 @@ class EucaRsaAuthV2Handler(boto.auth_handler.AuthHandler):
         params = []
         for key, val in http_request.params.iteritems():
             params.append(urllib.quote(param,    safe='/~') + '=' +
-                          urllib.quote(str(val), safe='/~'))
+                          urllib.quote(str(val), safe='~'))
         return '&'.join(sorted(params))
 
     def _get_headers_to_sign(self, http_request):

-- 
managing cloud instances for Eucalyptus



More information about the pkg-eucalyptus-commits mailing list