summaryrefslogtreecommitdiff
path: root/patchwork/__init__.py
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2016-10-18 21:12:03 +0100
committerStephen Finucane <stephen@that.guru>2017-03-01 22:16:06 +0000
commit837c5fd93595ef2d5f142642ea7248e08ab40c26 (patch)
tree53d7b7ad1ec0047826342e9e13d8fa11f4512851 /patchwork/__init__.py
parent66a88a4669bc43447b9bae08606e262cf739c35b (diff)
downloadpatchwork-837c5fd93595ef2d5f142642ea7248e08ab40c26.tar
patchwork-837c5fd93595ef2d5f142642ea7248e08ab40c26.tar.gz
models: Move signal to 'signals'
Additional signals are going to be added shortly and they shouldn't pollute 'models.py'. Signed-off-by: Stephen Finucane <stephen@that.guru> Tested-by: Daniel Axtens <dja@axtens.net>
Diffstat (limited to 'patchwork/__init__.py')
-rw-r--r--patchwork/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/patchwork/__init__.py b/patchwork/__init__.py
index f82d711..6aec7e7 100644
--- a/patchwork/__init__.py
+++ b/patchwork/__init__.py
@@ -22,3 +22,5 @@ from patchwork.version import get_latest_version
VERSION = (2, 0, 0, 'alpha', 0)
__version__ = get_latest_version(VERSION)
+
+default_app_config = 'patchwork.apps.PatchworkAppConfig'