diff options
| author | Clifford Gama <cliffygamy@gmail.com> | 2025-09-13 14:20:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-13 08:20:17 -0400 |
| commit | 9932866e3a7693930a90a924014c10614820ea70 (patch) | |
| tree | 67494e7429c6f6ee9669a4893323483e0f68d921 /docs/internals | |
| parent | e183d6c26c8da4486c151f9ce973828e2404a796 (diff) | |
Refs #35667 -- Corrected usage of skip_file_prefixes in contributing docs.
Diffstat (limited to 'docs/internals')
| -rw-r--r-- | docs/internals/contributing/writing-code/submitting-patches.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals/contributing/writing-code/submitting-patches.txt b/docs/internals/contributing/writing-code/submitting-patches.txt index c8de8828fe..035eb815cb 100644 --- a/docs/internals/contributing/writing-code/submitting-patches.txt +++ b/docs/internals/contributing/writing-code/submitting-patches.txt @@ -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() ... |
