We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c8e2a8 commit e479ccbCopy full SHA for e479ccb
docs/conf.py
@@ -9,7 +9,6 @@
9
# All configuration values have a default; values that are commented out
10
# serve to show the default.
11
12
-import functools
13
import sys
14
from os.path import abspath, dirname, join
15
@@ -442,8 +441,11 @@ def django_release():
442
441
# If false, no index is generated.
443
# epub_use_index = True
444
445
-linkcode_resolve = functools.partial(
446
- github_links.github_linkcode_resolve,
447
- version=version,
448
- next_version=django_next_version,
449
-)
+
+def version_github_linkcode_resolve(domain, info):
+ return github_links.github_linkcode_resolve(
+ domain, info, version=version, next_version=django_next_version
+ )
450
451
+linkcode_resolve = version_github_linkcode_resolve
0 commit comments