From f95e307ba06cda9d534db6dd37c6517942bd9055 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 2 Sep 2015 02:05:59 +0200 Subject: [PATCH] gst1: Replace BUS_DROP with BusSyncReply.DROP --- mopidy/audio/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/audio/actor.py b/mopidy/audio/actor.py index ea452c22..ed118f8d 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -690,7 +690,7 @@ class Audio(pykka.ThreadingActor): """ def sync_handler(bus, message): self._handler.on_message(bus, message) - return Gst.BUS_DROP + return Gst.BusSyncReply.DROP bus = self._playbin.get_bus() bus.set_sync_handler(sync_handler)