Remove deprecated settings

Examples:

RemovedInDjango50Warning: The USE_L10N setting is deprecated. Starting with Django 5.0, localized formatting of data will always be enabled. For example Django will display numbers and dates using the format of the current locale.
  warnings.warn(USE_L10N_DEPRECATED_MSG, RemovedInDjango50Warning)

RemovedInDjango41Warning: 'allianceauth' defines default_app_config = 'allianceauth.apps.AllianceAuthConfig'. Django now detects this configuration automatically. You can remove default_app_config.
  app_config = AppConfig.create(entry)
This commit is contained in:
Peter Pfeufer
2022-03-03 12:06:16 +01:00
parent c377bcec5f
commit 1d240a40dd
26 changed files with 0 additions and 30 deletions

View File

@@ -1 +0,0 @@
default_app_config = 'allianceauth.timerboard.apps.TimerBoardConfig'