diff options
| author | zhengkangyang <1872483761@qq.com> | 2026-06-06 16:17:24 +0800 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2026-06-10 10:17:34 -0400 |
| commit | f970a98e464320c09dde8d45009eadfb4d038a57 (patch) | |
| tree | 23211de1605cff20d774a93ccdbbb5ff4c928c2d /django/conf/__init__.py | |
| parent | 17a56cd6e600cfb02972657e8958b5ee2e0f936e (diff) | |
Fixed #37142 -- Moved django_file_prefixes() to django.utils.warnings.
Diffstat (limited to 'django/conf/__init__.py')
| -rw-r--r-- | django/conf/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/__init__.py b/django/conf/__init__.py index 020047ffd8..b3daea5b7b 100644 --- a/django/conf/__init__.py +++ b/django/conf/__init__.py @@ -16,10 +16,10 @@ from django.conf import global_settings from django.core.exceptions import ImproperlyConfigured from django.utils.deprecation import ( RemovedInDjango70Warning, - django_file_prefixes, warn_about_external_use, ) from django.utils.functional import LazyObject, empty +from django.utils.warnings import django_file_prefixes ENVIRONMENT_VARIABLE = "DJANGO_SETTINGS_MODULE" DEFAULT_STORAGE_ALIAS = "default" |
