From ce6c1557a3e0eb49790521e2f0b366b19ce203cc Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 21 Aug 2013 17:14:04 -0400 Subject: [PATCH] yikes return the modname if no lookup found... --- doc/build/builder/autodoc_mods.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/build/builder/autodoc_mods.py b/doc/build/builder/autodoc_mods.py index 25d1398647..93e2596be7 100644 --- a/doc/build/builder/autodoc_mods.py +++ b/doc/build/builder/autodoc_mods.py @@ -30,6 +30,8 @@ def _adjust_rendered_mod_name(modname, objname): return _convert_modname[modname] elif (modname, objname) in _convert_modname_w_class: return _convert_modname_w_class[(modname, objname)] + else: + return modname # im sure this is in the app somewhere, but I don't really # know where, so we're doing it here. -- 2.47.3