diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index 74b67b2..ab3c0d4 100644
a
|
b
|
must be added to :attr:`~BaseCommand.option_list` like this:
|
97 | 97 | ) |
98 | 98 | # ... |
99 | 99 | |
| 100 | The option (``delete`` in our example) is then available in the options dict |
| 101 | parameter of the handle method. See the :py:mod:`optparse` Python documentation |
| 102 | for more about ``make_option`` usage. |
| 103 | |
100 | 104 | In addition to being able to add custom command line options, all |
101 | 105 | :doc:`management commands</ref/django-admin>` can accept some |
102 | 106 | default options such as :djadminopt:`--verbosity` and :djadminopt:`--traceback`. |