1
0
mirror of https://github.com/django/django.git synced 2025-09-15 13:39:11 +00:00

Refs #35667 -- Corrected usage of skip_file_prefixes in contributing docs.

This commit is contained in:
Clifford Gama 2025-09-13 14:20:17 +02:00 committed by GitHub
parent e183d6c26c
commit 9932866e3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -295,7 +295,7 @@ deprecation ends. For example::
warnings.warn(
"foo() is deprecated.",
category=RemovedInDjangoXXWarning,
stacklevel=django_file_prefixes(),
skip_file_prefixes=django_file_prefixes(),
)
old_private_helper()
...