diff --git a/mopidy/utils/deps.py b/mopidy/utils/deps.py index 13b48dc0..40b53174 100644 --- a/mopidy/utils/deps.py +++ b/mopidy/utils/deps.py @@ -71,7 +71,7 @@ def gstreamer_info(): other = [] other.append('Python wrapper: gst-python %s' % ( '.'.join(map(str, gst.get_pygst_version())))) - other.append('Elements:') + other.append('Relevant elements:') for name, status in _gstreamer_check_elements(): other.append(' %s: %s' % (name, status)) return { diff --git a/tests/utils/deps_test.py b/tests/utils/deps_test.py index 9c623da0..9898b59f 100644 --- a/tests/utils/deps_test.py +++ b/tests/utils/deps_test.py @@ -69,7 +69,7 @@ class DepsTest(unittest.TestCase): self.assertIn('gst', result['path']) self.assertIn('Python wrapper: gst-python', result['other']) self.assertIn('.'.join(map(str, gst.get_pygst_version())), result['other']) - self.assertIn('Elements:', result['other']) + self.assertIn('Relevant elements:', result['other']) def test_pykka_info(self): result = deps.pykka_info()