[Django]-South appears to be loading initial_data.json twice

7👍

The recommended solution is not to use initial data fixtures with South at all, but to call loaddata from inside a migration instead:

See this discussion on Google Groups –
link

0👍

This unfortunately does not work anymore since django 1.6.

http://south.aeracode.org/ticket/1328

Leave a comment