Skip to content

Commit

Permalink
add default_app_config
Browse files Browse the repository at this point in the history
  • Loading branch information
kidig committed Nov 22, 2016
1 parent 75a0b42 commit 2d6d63b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion django_happymailer/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'happymailer.apps.HappymailerConfig',
'happymailer',
'dummy',
'dummy2'
]
Expand Down
3 changes: 3 additions & 0 deletions happymailer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
from .backends.base import InvalidVariableException
from .utils import all_template_classes, all_layout_classes, get_layout, TemplateConfigurationError

default_app_config = 'happymailer.apps.HappymailerConfig'


__all__ = ('Template', 'Layout', 't')

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 2d6d63b

Please sign in to comment.