diff options
| author | Riley Shaw <[email protected]> | 2020-05-26 02:39:59 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-25 21:39:59 -0400 |
| commit | 3c558af0cb16f8ccc88948e66bc756a4fac34362 (patch) | |
| tree | 3f5ca694e3ae98e107cffcd670393d820de39433 /docs/extensions | |
| parent | Move table JS outside of scrolling (diff) | |
| download | discord.py-3c558af0cb16f8ccc88948e66bc756a4fac34362.tar.xz discord.py-3c558af0cb16f8ccc88948e66bc756a4fac34362.zip | |
make documentation sphinx 3.x compatible
Diffstat (limited to 'docs/extensions')
| -rw-r--r-- | docs/extensions/attributetable.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/extensions/attributetable.py b/docs/extensions/attributetable.py index 234f944f..548d87a4 100644 --- a/docs/extensions/attributetable.py +++ b/docs/extensions/attributetable.py @@ -107,7 +107,8 @@ def build_lookup_table(env): ignored = { 'data', 'exception', 'module', 'class', } - for (fullname, (docname, objtype)) in domain.objects.items(): + + for (fullname, _, objtype, docname, _, _) in domain.get_objects(): if objtype in ignored: continue |