From 905984b96df14c6536688a3209568ad3859f64d0 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 26 Aug 2017 14:33:41 -0300 Subject: [PATCH] Fix a Python3 compatibility --- disco/voice/queue.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/disco/voice/queue.py b/disco/voice/queue.py index 8670d14..eaa1baa 100644 --- a/disco/voice/queue.py +++ b/disco/voice/queue.py @@ -48,3 +48,5 @@ class PlayableQueue(BaseQueue): def __nonzero__(self): return True + + __bool__ = __nonzero__