Fix name of `find_all` parameter in staticfiles finder.
Review Request #14768 — Created Jan. 8, 2026 and updated — Latest diff uploaded
Our staticfiles finder for extensions was using the name
allfor the
optional second parameter, but inside Django this has been called
find_all. This value is now getting passed in as a kwarg, so we need
the name of that parameter to match.
Ran unit tests.