This file is indexed.

/usr/lib/python2.7/dist-packages/etcd_settings/apps.py is in python-django-etcd-settings 0.1.13+dfsg-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
from django.apps import AppConfig
from etcd_settings.proxy import proxy


class EtcdMonitor(AppConfig):

    name = 'etcd_settings'
    verbose_name = 'EtcdMonitor starting the threads for long polling'

    def ready(self):
        proxy.start_monitors()