gva/gnuviechadmin/osusers/apps.py

27 lines
593 B
Python
Raw Normal View History

2014-12-27 22:44:27 +01:00
"""
This module contains the :py:class:`django.apps.AppConfig` instance for the
:py:mod:`osusers` app.
2014-12-27 22:44:27 +01:00
"""
from __future__ import unicode_literals
2014-12-27 22:44:27 +01:00
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class OsusersAppConfig(AppConfig):
"""
AppConfig for the :py:mod:`osusers` app.
"""
name = 'osusers'
verbose_name = _('Operating System Users and Groups')
def ready(self):
"""
Takes care of importing the signal handlers of the :py:mod:`osusers`
app.
"""
import osusers.signals # NOQA