git.ithinksw.org
/
philo.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Added support for DateTime information being stored in a JSONAttribute. Switched...
[philo.git]
/
contrib
/
cowell
/
forms.py
diff --git
a/contrib/cowell/forms.py
b/contrib/cowell/forms.py
index
0b5a0c6
..
aa8b6ca
100644
(file)
--- 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()