Browse Source

proper nacl warning

pull/181/head
Casper da Costa-Luis 5 years ago
parent
commit
bfaf2f7c2c
No known key found for this signature in database GPG Key ID: D88C553DBD362CDE
  1. 3
      disco/voice/udp.py

3
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

Loading…
Cancel
Save