Skip to content

Commit 98a8cd6

Browse files
Fix custom_extensions in docs build
1 parent 97967ec commit 98a8cd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/custom_extensions/gssapi_find_missing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _missing_ref(app, env, node, contnode):
2929
non_raw_opts = []
3030
for opt in options:
3131
full_name, type_info = opt
32-
mod_name, _mod_type = type_info
32+
lib_name, mod_name, _mod_type = type_info
3333
if mod_name.startswith('gssapi.raw'):
3434
raw_opts.append(opt)
3535
else:
@@ -53,7 +53,7 @@ def _missing_ref(app, env, node, contnode):
5353
choice = options[0]
5454

5555
choice_name, choice_info = choice
56-
choice_mod, choice_type = choice_info
56+
gssapi, choice_mod, choice_type = choice_info
5757

5858
if choice_type == 'module':
5959
return env.domains['py']._make_module_refnode(

0 commit comments

Comments
 (0)