I'm using django with app-engine-patch and I'm having this wierd problem running manage.py dumpdata from local store (works fine when I use the --remote option)
I'm running a local development server that has some test data on it. I can see that data on the admin site. However running manage.py dumpdata all I get is this:
[{"pk": "agZmaWRkbWVyEQsSC2RqYW5nb19zaXRlGAEM", "model": "sites.site", "fields": {"domain": "example.com", "name": "example.com"}}]
Its not even related to what I'm working on. As if when running manage.py dumpdata, it loads a new dev_appserver that reads data from some unknown location that's not the default store.
Any idea where this dumpdata comes from?