diff options
Diffstat (limited to 'django/core/files/utils.py')
-rw-r--r-- | django/core/files/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/utils.py b/django/core/files/utils.py index 85342b2f3f..611f932f6e 100644 --- a/django/core/files/utils.py +++ b/django/core/files/utils.py @@ -26,7 +26,7 @@ def validate_file_name(name, allow_relative_path=False): class FileProxyMixin: """ - A mixin class used to forward file methods to an underlaying file + A mixin class used to forward file methods to an underlying file object. The internal file object has to be called "file":: class FileProxy(FileProxyMixin): |