Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django/core/files/storage/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def save(self, name, content, max_length=None):
# Ensure that the name is valid, before and after having the storage
# system potentially modifying the name. This duplicates the check made
# inside `get_available_name` but it's necessary for those cases where
# `get_available_name` is overriden and validation is lost.
# `get_available_name` is overridden and validation is lost.
validate_file_name(name, allow_relative_path=True)

# Potentially find a different name depending on storage constraints.
Expand Down
Loading