summaryrefslogtreecommitdiff
path: root/docs/howto/custom-management-commands.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/howto/custom-management-commands.txt')
-rw-r--r--docs/howto/custom-management-commands.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index 0e9608bc9c..7524463fb5 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -82,7 +82,7 @@ The new custom command can be called using ``python manage.py closepoll
The ``handle()`` method takes one or more ``poll_ids`` and sets ``poll.opened``
to ``False`` for each one. If the user referenced any nonexistent polls, a
:exc:`CommandError` is raised. The ``poll.opened`` attribute does not exist in
-the :doc:`tutorial</intro/tutorial01>` and was added to
+the :doc:`tutorial</intro/tutorial02>` and was added to
``polls.models.Question`` for this example.
.. _custom-commands-options: