Skip to content

Commit

Permalink
Fix custom_extensions in docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
frozencemetery committed Apr 7, 2020
1 parent 97967ec commit 98a8cd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/custom_extensions/gssapi_find_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _missing_ref(app, env, node, contnode):
non_raw_opts = []
for opt in options:
full_name, type_info = opt
mod_name, _mod_type = type_info
lib_name, mod_name, _mod_type = type_info
if mod_name.startswith('gssapi.raw'):
raw_opts.append(opt)
else:
Expand All @@ -53,7 +53,7 @@ def _missing_ref(app, env, node, contnode):
choice = options[0]

choice_name, choice_info = choice
choice_mod, choice_type = choice_info
gssapi, choice_mod, choice_type = choice_info

if choice_type == 'module':
return env.domains['py']._make_module_refnode(
Expand Down

0 comments on commit 98a8cd6

Please sign in to comment.