[FIX] fields: in binary fields, pass `strip_style` parameter between APIs

This commit is contained in:
Raphael Collet 2015-09-23 15:28:12 +02:00
parent 19f9328d0b
commit 6dd5071952
1 changed files with 1 additions and 0 deletions

View File

@ -374,6 +374,7 @@ class html(text):
def to_field_args(self):
args = super(html, self).to_field_args()
args['sanitize'] = self._sanitize
args['strip_style'] = self._strip_style
return args
import __builtin__