Ticket #14577: fix-uploadhandler-docstring.diff

File fix-uploadhandler-docstring.diff, 504 bytes (added by dauerbaustelle, 14 years ago)
  • django/core/files/uploadhandler.py

    diff --git a/django/core/files/uploadhandler.py b/django/core/files/uploadhandler.py
    a b  
    113113        Signal that a file has completed. File size corresponds to the actual
    114114        size accumulated by all the chunks.
    115115
    116         Subclasses must should return a valid ``UploadedFile`` object.
     116        Subclasses should return a valid ``UploadedFile`` object.
    117117        """
    118118        raise NotImplementedError()
    119119
Back to Top