Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanieleades <33452915+danieleades@users.noreply.github.com>2022-01-14 11:58:54 +0300
committerGitHub <noreply@github.com>2022-01-14 11:58:54 +0300
commit9c68cd12d7d22585d3beec04aed7c1dcc2939020 (patch)
tree8c2b6c50714af4002170fb96c55d3c110768dafe
parent18d7dfbd9526e96ee6272cce73bc4af246dd4f61 (diff)
Update recipe.py
-rw-r--r--doc/development/tutorials/examples/recipe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py
index 62c320d37..7af8af90d 100644
--- a/doc/development/tutorials/examples/recipe.py
+++ b/doc/development/tutorials/examples/recipe.py
@@ -87,7 +87,7 @@ class RecipeIndex(Index):
# first letter of the recipe as a key to group thing
#
# name, subtype, docname, anchor, extra, qualifier, description
- for _name, dispname, typ, docname, anchor, _ in recipes:
+ for _name, dispname, typ, docname, anchor, _priority in recipes:
content[dispname[0].lower()].append(
(dispname, 0, docname, anchor, docname, '', typ))