From bae053d497ba8a8de7e4f725973924bfb1885fd2 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 16 Feb 2023 19:18:55 +0100 Subject: [PATCH] Refs #21080, Refs #34322 -- Added warning to ManifestStaticFilesStorage docs about paths in comments. --- docs/ref/contrib/staticfiles.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt index c4295b0d68..374e21cb0f 100644 --- a/docs/ref/contrib/staticfiles.txt +++ b/docs/ref/contrib/staticfiles.txt @@ -330,6 +330,12 @@ argument. For example:: manifest_storage = StaticFilesStorage(location=settings.BASE_DIR) super().__init__(*args, manifest_storage=manifest_storage, **kwargs) +.. admonition:: References in comments + + ``ManifestStaticFilesStorage`` doesn't ignore paths in statements that are + commented out. This :ticket:`may crash on the nonexistent paths <21080>`. + You should check and eventually strip comments. + .. versionchanged:: 4.2 Support for finding paths to JavaScript modules in ``import`` and