Home > front end >  Exclusion of admin.logenty from dumpdata
Exclusion of admin.logenty from dumpdata

Time:11-11

I am trying to dump my data using

python manage.py dumpdata --exclude=admin.logentry

but it still gets included in the final json. Any hint what am I doing wrong ?

CodePudding user response:

Drop the =. It's --exclude admin.logentry.

  • Related