From 7a3d5ff13ce9928ab02f99dab6903435c51968d3 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 4 Dec 2015 00:05:00 +0100 Subject: [PATCH] gst1: Replace event_new_tag() with Event.new_tag() --- 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 10073121..40e32992 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -794,7 +794,7 @@ class Audio(pykka.ThreadingActor): gst_logger.debug( 'Sending TAG event for track %r: %r', track.uri, taglist.to_string()) - event = Gst.event_new_tag(taglist) + event = Gst.Event.new_tag(taglist) # TODO: check if we get this back on our own bus? self._playbin.send_event(event)