This file is indexed.

/usr/lib/python2.7/dist-packages/flask_frozen/test_app/admin/__init__.py is in python-frozen-flask 0.11-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
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
"""
    flask_frozen.test_app.admin
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Test application Frozen-Flask

    :copyright: (c) 2010-2012 by Simon Sapin.
    :license: BSD, see LICENSE for more details.

"""

from flask import Blueprint, render_template

admin_blueprint = Blueprint('admin', __name__,
    static_folder='admin_static', static_url_path='/css',
    template_folder='templates')


@admin_blueprint.route('/')
def index():
    return render_template('admin.html')