This file is indexed.

/usr/lib/python2.7/dist-packages/google_analytics/models.py is in lava-server 2016.12-3.

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
from django.contrib.sites.models import Site
from django.db import models


class Analytic(models.Model):
    site = models.OneToOneField(Site)
    analytics_code = models.CharField(blank=True, max_length=100)