]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
Remove 'default_app_config'
authorStephen Finucane <stephen@that.guru>
Mon, 9 May 2022 10:26:23 +0000 (11:26 +0100)
committerStephen Finucane <stephen@that.guru>
Mon, 9 May 2022 10:26:46 +0000 (11:26 +0100)
This is no longer necessary since we don't support Django < 3.2, which
is where the automatic configuration behavior was added [1].

[1] https://docs.djangoproject.com/en/4.0/releases/3.2/#automatic-appconfig-discovery

Signed-off-by: Stephen Finucane <stephen@that.guru>
patchwork/__init__.py

index bf4fbefcff33724e8f2343fe3914d20d5bf77dc7..bc6cf92bdaec4060210b2bc0597e74aa9364724f 100644 (file)
@@ -8,5 +8,3 @@ from patchwork.version import get_latest_version
 VERSION = (3, 1, 0, 'alpha', 0)
 
 __version__ = get_latest_version(VERSION)
-
-default_app_config = 'patchwork.apps.PatchworkAppConfig'