Ticket #14577: fix-uploadhandler-docstring.diff
File fix-uploadhandler-docstring.diff, 504 bytes (added by , 14 years ago) |
---|
-
django/core/files/uploadhandler.py
diff --git a/django/core/files/uploadhandler.py b/django/core/files/uploadhandler.py
a b 113 113 Signal that a file has completed. File size corresponds to the actual 114 114 size accumulated by all the chunks. 115 115 116 Subclasses mustshould return a valid ``UploadedFile`` object.116 Subclasses should return a valid ``UploadedFile`` object. 117 117 """ 118 118 raise NotImplementedError() 119 119