Skip to content

Commit 758477f

Browse files
author
Jens Diemer
committed
suppress the default_app_config attribute in Django 3.2+
Refactored version from #41 that didn't prepare a new release ;)
1 parent f44622b commit 758477f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ You must change your Django settings and replace the app name:
188188
## History
189189

190190
* [dev](https://github.com/boxine/django-huey-monitor/compare/v0.4.1...master)
191+
* suppress the default_app_config attribute in Django 3.2+ (contributed by [Jonas Svarvaa](https://github.com/xolan))
191192
* _tbc_
192193
* [v0.4.1 - 02.06.2020](https://github.com/boxine/django-huey-monitor/compare/v0.4.0...v0.4.1)
193194
* Bugfix `ProcessInfo.__str__()`

huey_monitor/__init__.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
"""
22
Huey Monitor Django reuseable App
33
"""
4-
default_app_config = 'huey_monitor.apps.HueyMonitorConfig'
4+
5+
from django import VERSION as DJANGO_VERSION
6+
7+
8+
if DJANGO_VERSION < (3, 2):
9+
default_app_config = 'huey_monitor.apps.HueyMonitorConfig'
10+
11+
512
__version__ = '0.4.1'

0 commit comments

Comments
 (0)