From: Mike Bayer Date: Wed, 21 Aug 2013 21:14:04 +0000 (-0400) Subject: yikes return the modname if no lookup found... X-Git-Tag: rel_0_9_0b1~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce6c1557a3e0eb49790521e2f0b366b19ce203cc;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git yikes return the modname if no lookup found... --- 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.