summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Bernard <shawnb@gmail.com>2013-10-15 10:54:40 -0700
committerDaniel Lindsley <daniel@toastdriven.com>2014-01-28 12:31:41 -0800
commit371152d2886d7c4cea2cb92d66223d5d2a5e0673 (patch)
treecb09f1809bc5ad56cb255abe0c11c5bd8d4263a1
parentbd28c0204d7d85d85032040e210f5eb45d07624b (diff)
downloadboto-py3kport.tar.gz
added missing .py3kport
-rw-r--r--boto/s3/key.py2
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: