summaryrefslogtreecommitdiff
path: root/boto/auth.py
diff options
context:
space:
mode:
authorLee Trout <ltrout@newsinc.com>2014-03-04 11:14:52 -0500
committerLee Trout <ltrout@newsinc.com>2014-03-04 11:14:52 -0500
commit28e34e13fae49879d49cb77841cf28560fb5a7f6 (patch)
treedca468f452cea0a699269240481d6d00eba88c0f /boto/auth.py
parent70d15b84b9dc97fa944eef492d47213dc12dcfc0 (diff)
downloadboto-28e34e13fae49879d49cb77841cf28560fb5a7f6.tar.gz
Fix dupe header dict
Diffstat (limited to 'boto/auth.py')
-rw-r--r--boto/auth.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/boto/auth.py b/boto/auth.py
index cf933a75..960a44fa 100644
--- a/boto/auth.py
+++ b/boto/auth.py
@@ -221,7 +221,6 @@ class HmacAuthV3HTTPHandler(AuthHandler, HmacKeys):
Select the headers from the request that need to be included
in the StringToSign.
"""
- headers_to_sign = {}
headers_to_sign = {'Host': self.host}
for name, value in http_request.headers.items():
lname = name.lower()