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
This commit is contained in:
parent
6cd9023635
commit
1f770c62da
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue