Fix chunked transfers in client lib.
authorAntony Chazapis <chazapis@gmail.com>
Mon, 6 Feb 2012 22:20:01 +0000 (00:20 +0200)
committerAntony Chazapis <chazapis@gmail.com>
Mon, 6 Feb 2012 22:20:01 +0000 (00:20 +0200)
pithos/lib/client.py

index 0381a38..dff5da3 100644 (file)
@@ -115,7 +115,7 @@ class Client(object):
         else:
             raise Exception('Unknown URL scheme')
         
-        full_path = _prepare_path(p.path + path, params)
+        full_path = _prepare_path(p.path + path, params=params)
         
         conn.putrequest(method, full_path)
         conn.putheader('x-auth-token', self.token)