summaryrefslogtreecommitdiff
path: root/boto/auth.py
diff options
context:
space:
mode:
Diffstat (limited to 'boto/auth.py')
-rw-r--r--boto/auth.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/boto/auth.py b/boto/auth.py
index 91c48640..c5ff8fe8 100644
--- a/boto/auth.py
+++ b/boto/auth.py
@@ -164,9 +164,9 @@ class HmacAuthV1Handler(AuthHandler, HmacKeys):
boto.log.debug('StringToSign:\n%s' % string_to_sign)
b64_hmac = self.sign_string(string_to_sign)
auth_hdr = self._provider.auth_header
- headers['Authorization'] = ("%s %s:%s" %
- (auth_hdr,
- self._provider.access_key, b64_hmac))
+ auth = ("%s %s:%s" % (auth_hdr, self._provider.access_key, b64_hmac))
+ boto.log.debug('Signature:\n%s' % auth)
+ headers['Authorization'] = auth
class HmacAuthV2Handler(AuthHandler, HmacKeys):