Skip to content

Commit 2d9ecaf

Browse files
committed
Fixed a minor typo "bot" instead of "boto" noticed while we
were looking at re-try logic here.
1 parent 9bfdd45 commit 2d9ecaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boto/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def _calc_signature(self, params, *args):
206206
keys.sort(cmp = lambda x, y: cmp(x.lower(), y.lower()))
207207
pairs = []
208208
for key in keys:
209-
val = bot.utils.get_utf8_value(params[key])
209+
val = boto.utils.get_utf8_value(params[key])
210210
pairs.append(key + '=' + urllib.quote(val))
211211
qs = '&'.join(pairs)
212212
return (qs, base64.b64encode(hmac.digest()))

0 commit comments

Comments
 (0)