17 Jun 2011 For those of you who keep your models in a subdirectory, you may have noticed that you can't properly load fixtures. This is because Django checks for the location of your models file to determine your app directory. To fix this, move your models directory to something like modeldir and create a models.py which imports the models from inside. Before: myapp |__ views.py |__ __init__.py |__ models/ |____ __init__.py |____ mymodel1.py |____ mymodel2.py After: myapp |__ views.py |__ _...