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
Source:stackexchange.com