From 9d261c902f075b7a8bdab26f8384942ff7f949be Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 14 Oct 2017 16:30:54 +0200 Subject: Remove use of deprecated base64.encodestring method --- poezio/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/poezio/common.py b/poezio/common.py index c078b36c..7168fe18 100644 --- a/poezio/common.py +++ b/poezio/common.py @@ -38,9 +38,9 @@ def get_base64_from_file(path): size = os.path.getsize(path) if size > 16384: return (None, None, "File is too big") - fdes = open(path, 'rb') - data = fdes.read() - encoded = base64.encodestring(data) + with open(path, 'rb') as fdes: + data = fdes.read() + encoded = base64.encodebytes(data) sha1 = hashlib.sha1(data).hexdigest() mime_type = mimetypes.guess_type(path)[0] return (encoded, mime_type, sha1) -- cgit v1.2.3