Skip to content

Commit

Permalink
Merge pull request #31 from blag/add-appconfig
Browse files Browse the repository at this point in the history
Add AppConfig apps.py for Django 1.8+
  • Loading branch information
stephenmcd committed Mar 20, 2017
2 parents 00422da + bcd1daf commit a1412ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion email_extras/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

__version__ = "0.3.3"
default_app_config = 'email_extras.apps.EmailExtrasConfig'
6 changes: 6 additions & 0 deletions email_extras/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class EmailExtrasConfig(AppConfig):
name = 'email_extras'
verbose_name = 'Email Extras'

0 comments on commit a1412ed

Please sign in to comment.