From cfd135c299445e395908654206a357e5cd29dc46 Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sat, 27 Nov 2010 15:56:47 -0500 Subject: [PATCH] Pause after plugin fixes The pause after current song plugin was using the old pause function, and not the new one. --- plugins/pause_after.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/pause_after.py b/plugins/pause_after.py index 3e0ab081..88bfe4c4 100644 --- a/plugins/pause_after.py +++ b/plugins/pause_after.py @@ -8,7 +8,7 @@ do_pause = False def check_pause(*args): global do_pause if do_pause == True: - libsaria.audio.pause() + libsaria.components.pause() do_pause = False def set_pause(*args):