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_8_3~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78c339a113e9e679c44ddfe52fc40a6a1c7ecf4e;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 30eb0d068e..e4841bbbc7 100644 --- a/doc/build/builder/autodoc_mods.py +++ b/doc/build/builder/autodoc_mods.py @@ -22,6 +22,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.