This file is indexed.

/usr/lib/python2.7/dist-packages/mopidy_mpris/__init__.py is in mopidy-mpris 1.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from __future__ import unicode_literals

import os

from mopidy import config, exceptions, ext


__version__ = '1.3.1'


class Extension(ext.Extension):

    dist_name = 'Mopidy-MPRIS'
    ext_name = 'mpris'
    version = __version__

    def get_default_config(self):
        conf_file = os.path.join(os.path.dirname(__file__), 'ext.conf')
        return config.read(conf_file)

    def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['desktop_file'] = config.Path()
        schema['bus_type'] = config.String(choices=['session', 'system'])
        return schema

    def validate_environment(self):
        try:
            import dbus  # noqa
        except ImportError as e:
            raise exceptions.ExtensionError('dbus library not found', e)

    def setup(self, registry):
        from .frontend import MprisFrontend
        registry.add('frontend', MprisFrontend)