/usr/lib/python3/dist-packages/ipware/apps.py is in python3-django-ipware 2.0.1-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 | from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class IPwareConfig(AppConfig):
"""
Configuration entry point for the ipware app
"""
label = name = 'ipware'
verbose_name = _("ipware app")
|