[Answered ]-'Command' object has no attribute 'stdout'

2👍

i think you can not call handle_noargs directly, the BaseCommand class command has an execute() method which calls handle() and before initializes stdout and stderr

so every time you run a command, the execute() method is called which expects the handle method to be implemented

Leave a comment