views:

3

answers:

0

Attempting to run the dumpdata command in Django release 1.2.1:

./manage.py dumpdata myapp

I get the error "Can't resolve dependencies for myapp.model1 myapp.model2 myapp.model3".

Dumpdata is fine if I specify the list of models - e.g.,

./manage dumpdata myapp.model1 myapp.model2 myapp.model3 etc.

Is there a way to encode the dependency information in my models.py ?