diff options
author | Jean-François B <2589111+jfbu@users.noreply.github.com> | 2022-08-01 21:05:47 +0200 |
---|---|---|
committer | Jean-François B <2589111+jfbu@users.noreply.github.com> | 2022-08-01 21:05:47 +0200 |
commit | f72a25ce7680fde652cbe7e98fd6d1c21b9409b7 (patch) | |
tree | c422e2b6438b65d7d635cb570c3434e550e85cbe /doc/development/tutorials | |
parent | e47ef710db244f3272e9f75f52bdc91c46720ac3 (diff) | |
parent | 50904866b73f898e570cfc27097999d582fb0d02 (diff) | |
download | sphinx-git-f72a25ce7680fde652cbe7e98fd6d1c21b9409b7.tar.gz |
Merge branch '5.1.x' into 5.x
Diffstat (limited to 'doc/development/tutorials')
-rw-r--r-- | doc/development/tutorials/examples/recipe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 7af8af90d..f917f15c9 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -121,7 +121,7 @@ class RecipeDomain(Domain): def get_objects(self): for obj in self.data['recipes']: - yield(obj) + yield obj def resolve_xref(self, env, fromdocname, builder, typ, target, node, contnode): |