diff options
-rw-r--r-- | boto/s3/key.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/s3/key.py b/boto/s3/key.py index 6e84f93b..4fd5b909 100644 --- a/boto/s3/key.py +++ b/boto/s3/key.py @@ -174,7 +174,7 @@ class Key(object): 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: |