Skip to content

Commit

Permalink
Merge pull request boto#3496 from benhoyt/patch-1
Browse files Browse the repository at this point in the history
Minor indentation fix in Key._get_file_internal()
  • Loading branch information
kyleknap committed Mar 2, 2016
2 parents 3fb87b1 + 6225857 commit e34721d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boto/s3/key.py
Original file line number Diff line number Diff line change
Expand Up @@ -1552,7 +1552,7 @@ def _get_file_internal(self, fp, headers=None, cb=None, num_cb=10,
if cb and (cb_count <= 1 or i > 0) and data_len > 0:
cb(data_len, cb_size)
for alg in digesters:
self.local_hashes[alg] = digesters[alg].digest()
self.local_hashes[alg] = digesters[alg].digest()
if self.size is None and not torrent and "Range" not in headers:
self.size = data_len
self.close()
Expand Down

0 comments on commit e34721d

Please sign in to comment.