mirror of
https://github.com/django/django.git
synced 2025-08-01 09:32:50 +00:00
Fixed #31517 -- Fixed HashedFilesMixin.hashed_name() if hash of the file is None.
This commit is contained in:
parent
35f89d199c
commit
67b334fbaf
3 changed files with 15 additions and 2 deletions
|
@ -88,3 +88,8 @@ class ExtraPatternsStorage(ManifestStaticFilesStorage):
|
|||
),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
class NoneHashStorage(ManifestStaticFilesStorage):
|
||||
def file_hash(self, name, content=None):
|
||||
return None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue