From bfaf2f7c2cdd61484ae33fd664ea51c4ef27ed09 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Wed, 22 Jul 2020 19:58:43 +0100 Subject: [PATCH] proper nacl warning --- disco/voice/udp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/disco/voice/udp.py b/disco/voice/udp.py index 8b32080..e107d6b 100644 --- a/disco/voice/udp.py +++ b/disco/voice/udp.py @@ -1,13 +1,14 @@ import struct import socket import gevent +import warnings from collections import namedtuple try: import nacl.secret except ImportError: - print('WARNING: nacl is not installed, voice support is disabled') + warnings.warn('nacl is not installed, voice support is disabled') from holster.enum import Enum