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 struct
import socket import socket
import gevent import gevent
import warnings
from collections import namedtuple from collections import namedtuple
try: try:
import nacl.secret import nacl.secret
except ImportError: 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 from holster.enum import Enum

Loading…
Cancel
Save