Fixed #25515 -- Documented the return value of BaseCommand.handle()

This commit is contained in:
Tim Graham 2015-10-06 15:08:15 -04:00
parent cb15ceb555
commit 3f766d44c5
1 changed files with 3 additions and 0 deletions

View File

@ -300,6 +300,9 @@ the :meth:`~BaseCommand.handle` method must be implemented.
The actual logic of the command. Subclasses must implement this method.
It may return a Unicode string which will be printed to ``stdout`` (wrapped
by ``BEGIN;`` and ``COMMIT;`` if :attr:`output_transaction` is ``True``).
.. method:: BaseCommand.check(app_configs=None, tags=None, display_num_errors=False)
Uses the system check framework to inspect the entire Django project for