From: Stephen Finucane Date: Mon, 9 May 2022 10:26:23 +0000 (+0100) Subject: Remove 'default_app_config' X-Git-Tag: v3.1.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46a3afcb8cdc51ad60bce174b0afc9cf08432d43;p=thirdparty%2Fpatchwork.git Remove 'default_app_config' 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 --- diff --git a/patchwork/__init__.py b/patchwork/__init__.py index bf4fbefc..bc6cf92b 100644 --- a/patchwork/__init__.py +++ b/patchwork/__init__.py @@ -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'