awx/awx/ui/apps.py
Jeff Bradberry a3a216f91f Fix up new Django 3.0 deprecations
Mostly text based: force/smart_text, ugettext_*
2022-03-07 18:11:36 -05:00

10 lines
175 B
Python

# Django
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class UIConfig(AppConfig):
name = 'awx.ui'
verbose_name = _('UI')