mirror of
https://github.com/django/django.git
synced 2025-01-06 16:35:49 +00:00
ec675ed6cc
Thanks bendavis78 for the report.
9 lines
196 B
Python
9 lines
196 B
Python
from django.apps import AppConfig
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class SessionsConfig(AppConfig):
|
|
name = 'django.contrib.sessions'
|
|
verbose_name = _("Sessions")
|