From 961833a1374e9224e679070149984cbd8fba2a65 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 5 May 2020 16:30:22 +1000 Subject: [PATCH] avoid mention of pip --- qt/aqt/sound.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/qt/aqt/sound.py b/qt/aqt/sound.py index d5f89737f..d605e752c 100644 --- a/qt/aqt/sound.py +++ b/qt/aqt/sound.py @@ -525,9 +525,7 @@ Recorder = PyAudioRecorder def getAudio(parent: QWidget, encode: bool = True) -> Optional[str]: "Record and return filename" if not pyaudio: - showWarning( - "The Python pip `pyaudio` dependency is not installed and audio recording will not work!" - ) + showWarning("Please install pyaudio.") return None # record first r = Recorder()