/usr/lib/python3/dist-packages/overextends/models.py is in python3-django-overextends 0.4.0-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 | # This app doesn't contain any models, but as its template tags need to
# be added to built-ins at start-up time, this is a good place to do it.
import django
if django.VERSION < (1,9):
from django.template.base import add_to_builtins
add_to_builtins("overextends.templatetags.overextends_tags")
|