[Django]-Django-taggit-autocomplete and south

3👍

Finally I have solved the problem adding following code to models.py

from south.modelsinspector import add_ignored_fields
add_ignored_fields(["^taggit_autocomplete\.managers"])

0👍

Here’s some context to @Douglish’s own answer – taken from South’s documentation:

you can ignore some fields completely if you know they’re not needed.
For example, django-taggit has a manager that actually shows up as a
fake field (this makes the API for using it much nicer, but confuses
South to no end). The django-taggit module we ship with contains this
rule to ignore it:

from south.modelsinspector import add_ignored_fields
add_ignored_fields(["^taggit\.managers"])
👤jogwen

Leave a comment