File: sphinx-does-not-call-_resolve_broken_refs.patch

package info (click to toggle)
python-jsonschema 4.25.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,952 kB
  • sloc: python: 8,469; makefile: 210; sh: 12
file content (18 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Do not call _resolve_broken_refs when building doc
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2023-11-27

--- python-jsonschema-4.19.2.orig/docs/conf.py
+++ python-jsonschema-4.19.2/docs/conf.py
@@ -66,8 +66,8 @@ def _resolve_broken_refs(app, env, node,
         )
 
 
-def setup(app):
-    app.connect("missing-reference", _resolve_broken_refs)
+#def setup(app):
+#    app.connect("missing-reference", _resolve_broken_refs)
 
 
 # = Builders =