This file is indexed.

/usr/lib/python2.7/dist-packages/social/apps/django_app/default/migrations/0004_auto_20160423_0400.py is in python-social-auth 1:0.2.21+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
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models
import social.apps.django_app.default.fields


class Migration(migrations.Migration):
    replaces = [('default', '0004_auto_20160423_0400')]

    dependencies = [
        ('social_auth', '0003_alter_email_max_length'),
    ]

    operations = [
        migrations.AlterField(
            model_name='usersocialauth',
            name='extra_data',
            field=social.apps.django_app.default.fields.JSONField(default={}),
        ),
    ]