south_field_triple() always outputs 'None' as value of populate_from.

Issue #12 resolved
Thomas Woolford created an issue

This causes problems when you need to create a data-migration that rewrites slugs.

please change fields.py:45 to read:

{{{ kwargs.update({ 'populate_from': 'None' if callable(self.populate_from) else repr(self.populate_from), 'unique_with': repr(self.unique_with) }) }}}

Comments (1)

  1. Log in to comment