Skip to content

Commit

Permalink
Added MpttConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
rsalmaso authored and matthiask committed Apr 5, 2018
1 parent e3ca86b commit 51af057
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mptt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
VERSION = (0, 9, 0)
__version__ = '.'.join(str(v) for v in VERSION)

default_app_config = "mptt.apps.MpttConfig"


def register(*args, **kwargs):
"""
Expand Down
9 changes: 9 additions & 0 deletions mptt/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from __future__ import unicode_literals

from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _


class MpttConfig(AppConfig):
name = "mptt"
verbose_name = _("mptt")

0 comments on commit 51af057

Please sign in to comment.