Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add AppConfig for Django 1.7
  • Loading branch information
arneb committed Feb 14, 2014
1 parent cd150be commit 13a3ab5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django_messages/__init__.py
@@ -1,2 +1,3 @@
VERSION = (0, 5, 0, 'pre')
__version__ = '.'.join(map(str, VERSION))
__version__ = '.'.join(map(str, VERSION))
default_app_config = 'django_messages.apps.DjangoMessagesConfig'
6 changes: 6 additions & 0 deletions django_messages/apps.py
@@ -0,0 +1,6 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

class DjangoMessagesConfig(AppConfig):
name = 'django_messages'
verbose_name = _('Messages')

0 comments on commit 13a3ab5

Please sign in to comment.