summaryrefslogtreecommitdiff
path: root/awsauth.py
diff options
context:
space:
mode:
authorPaul <paultax@gmail.com>2013-05-02 20:58:13 +0200
committerPaul <paultax@gmail.com>2013-05-02 20:58:13 +0200
commitf15376bb4cf91c8aee6a06fdc0d1e277969e8211 (patch)
tree2b14852213f30fc981eedfb789e9c56a6351e109 /awsauth.py
parented39394b8ff1e1a01170d6b1e0e3a1ea87a94c69 (diff)
downloadpython-requests-aws-f15376bb4cf91c8aee6a06fdc0d1e277969e8211.tar.gz
Fix issue#4 fix for encoded paths
Thanks @jamshid for reporting this Bumping to version 0.1.3
Diffstat (limited to 'awsauth.py')
-rw-r--r--awsauth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/awsauth.py b/awsauth.py
index 3d69bfc..e4d18d0 100644
--- a/awsauth.py
+++ b/awsauth.py
@@ -78,7 +78,7 @@ class S3Auth(AuthBase):
buf += '/%s' % bucket
# add the objectkey. even if it doesn't exist, add the slash
- buf += '/%s' % urllib.unquote(objectkey)
+ buf += '/%s' % objectkey
params_found = False