Commit 1f770c62 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Fix initialisation of ImageField super classes.

Fixes #16548, with thanks to pyriku.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16658 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 6cd90236
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -320,9 +320,10 @@ class ImageField(FileField):
    descriptor_class = ImageFileDescriptor
    description = _("File path")

    def __init__(self, verbose_name=None, name=None, width_field=None, height_field=None, **kwargs):
    def __init__(self, verbose_name=None, name=None, width_field=None,
            height_field=None, **kwargs):
        self.width_field, self.height_field = width_field, height_field
        FileField.__init__(self, verbose_name, name, **kwargs)
        super(ImageField, self).__init__(verbose_name, name, **kwargs)

    def contribute_to_class(self, cls, name):
        super(ImageField, self).contribute_to_class(cls, name)