I am trying to backup a django app via the built in "dumpdata" command:
python manage.py dumpdata --exclude=contenttypes --indent=4 > path_to_dumped_data.json
But the json data is being printed to the screen and the file remains empty
Any ideas
(python2.6, django 1.2.3, Ubuntu 10.04 LTS)