[Fixed]-Django-South introspection rule doesn't work

17๐Ÿ‘

โœ…

I got it! ๐Ÿ™‚

I changed this: ["^core/.fields/.ImageWithThumbsField",]

To this: ["^lib\.thumbs\.ImageWithThumbsField",]

This whole line is a regular-expression of python paths of Django field types (read this again, long sentence).

South stumbled upon a field name ImageWithThumbsField that was declared in the path lib.thumbs. I gave him a wrong path, so South still didnโ€™t know what to do when stumbling upon this field.

Once I gave him the correct path, it knew how to handle the field once he got to it.

๐Ÿ‘คOry Band

Leave a comment