From 3f8ebc83c1a73491f33f93de64f05a3c43db9297 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 2 Sep 2015 01:21:01 +0200 Subject: [PATCH] gst1: Replace ghost_unconnected_pads with ghost_unlinked_pads --- 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 0abf9aa5..8ecc0f37 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -152,7 +152,7 @@ class _Outputs(Gst.Bin): # XXX This only works for pipelines not in use until #790 gets done. try: output = Gst.parse_bin_from_description( - description, ghost_unconnected_pads=True) + description, ghost_unlinked_pads=True) except GObject.GError as ex: logger.error( 'Failed to create audio output "%s": %s', description, ex)