remove pyaudio try/accept, as we catch it in sound.py

This commit is contained in:
Damien Elmes 2013-12-17 02:02:56 +09:00
parent f0525a76fb
commit 33984b1f60

11
thirdparty/pyaudio.py vendored
View File

@ -92,16 +92,7 @@ __author__ = "Hubert Pham"
__version__ = "0.2.4"
__docformat__ = "restructuredtext en"
import sys
# attempt to import PortAudio
try:
import _portaudio as pa
except ImportError:
print "Please build and install the PortAudio Python " +\
"bindings first."
sys.exit(-1)
import _portaudio as pa
# Try to use Python 2.4's built in `set'
try: