Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
added missing .
Browse files Browse the repository at this point in the history
  • Loading branch information
sabernar authored and toastdriven committed Jan 28, 2014
1 parent bd28c02 commit 371152d
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 @@ -174,7 +174,7 @@ def _set_md5(self, value):

def _get_base64md5(self):
if 'md5' in self.local_hashes and self.local_hashes['md5']:
return binascii.b2a_base64(self.local_hashes['md5'])decode().rstrip('\n')
return binascii.b2a_base64(self.local_hashes['md5']).decode().rstrip('\n')

def _set_base64md5(self, value):
if value:
Expand Down

0 comments on commit 371152d

Please sign in to comment.