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 17, 2016
1 parent 409e0b0 commit f3c44ec
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 @@ -14,6 +14,9 @@
from .backends.base import InvalidVariableException


default_app_config = 'happymailer.apps.HappymailerConfig'


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

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit f3c44ec

Please sign in to comment.