X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/65350fb7f97eb0cbcbba837ee226563d6839fc91..fbe780ee3c39c4feea456aa9d36c89467900191c:/contrib/cowell/forms.py diff --git a/contrib/cowell/forms.py b/contrib/cowell/forms.py index 0b5a0c6..aa8b6ca 100644 --- a/contrib/cowell/forms.py +++ b/contrib/cowell/forms.py @@ -90,7 +90,7 @@ class ProxyFieldForm(ProxyFieldFormBase): # Would inherit from ModelForm directl continue if self._meta.exclude and f.name in self._meta.exclude: continue - setattr(instance, f.attname, cleaned_data[f.name]) + setattr(instance, f.attname, f.get_storage_value(cleaned_data[f.name])) if commit: instance.save()