File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ STATIC mp_obj_t audiobusio_i2sout_obj_pause(mp_obj_t self_in) {
221221 raise_error_if_deinited (common_hal_audiobusio_i2sout_deinited (self ));
222222
223223 if (!common_hal_audiobusio_i2sout_get_playing (self )) {
224- mp_raise_RuntimeError ("No sample playing cannot pause " );
224+ mp_raise_RuntimeError ("Not playing" );
225225 }
226226 common_hal_audiobusio_i2sout_pause (self );
227227 return mp_const_none ;
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ STATIC mp_obj_t audioio_audioout_obj_pause(mp_obj_t self_in) {
218218 raise_error_if_deinited (common_hal_audioio_audioout_deinited (self ));
219219
220220 if (!common_hal_audioio_audioout_get_playing (self )) {
221- mp_raise_RuntimeError ("No sample playing cannot pause " );
221+ mp_raise_RuntimeError ("Not playing" );
222222 }
223223 common_hal_audioio_audioout_pause (self );
224224 return mp_const_none ;
You can’t perform that action at this time.
0 commit comments