From e357162c003791ffdbc4b6feb8560222b47a1a21 Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 8 May 2017 07:13:49 -0700 Subject: [PATCH] Fix Py3 warning in OpusEncoder --- disco/voice/opus.py | 6 +++++- requirements.txt | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/disco/voice/opus.py b/disco/voice/opus.py index 246dbed..b33cff8 100644 --- a/disco/voice/opus.py +++ b/disco/voice/opus.py @@ -1,3 +1,4 @@ +import six import sys import array import ctypes @@ -142,7 +143,10 @@ class OpusEncoder(BaseOpus): raise Exception('Failed to encode: {}'.format(ret)) # TODO: py3 - return array.array('b', data[:ret]).tostring() + if six.PY3: + return array.array('b', data[:ret]).tobytes() + else: + return array.array('b', data[:ret]).tostring() class OpusDecoder(BaseOpus): diff --git a/requirements.txt b/requirements.txt index a0de4f3..066c0b1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ gevent==1.2.1 -holster==1.0.14 +holster==1.0.15 inflection==0.3.1 requests==2.13.0 six==1.10.0