Commit 833f8d13 authored by Jason Madden's avatar Jason Madden

Fix building sphinx docs on python 3 [skip ci]

parent 9c6ba97c
......@@ -43,7 +43,7 @@ def missing_reference(app, env, node, contnode):
print('Looking for %s' % [type, target, modname, classname])
print(node)
for docname, items in env.indexentries.iteritems():
for docname, items in env.indexentries.items():
if noisy >= 2:
print(docname)
for (i_type, i_string, i_target, i_aliasname) in items:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment