diff --git a/model_utils/fields.py b/model_utils/fields.py index 99e1b6f..74c44b2 100644 --- a/model_utils/fields.py +++ b/model_utils/fields.py @@ -231,7 +231,7 @@ class SplitField(models.TextField): def deconstruct(self): name, path, args, kwargs = super(SplitField, self).deconstruct() - kwargs['no_excerpt_field'] = self.add_excerpt_field + kwargs['no_excerpt_field'] = True return name, path, args, kwargs # allow South to handle these fields smoothly