summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-08-21 17:14:04 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-08-21 17:14:19 -0400
commitce6c1557a3e0eb49790521e2f0b366b19ce203cc (patch)
tree87e563942587419caa1b5735829796cbcb954d29
parentb13a434f6fb2a947b284f589148aa8cb6974e3d5 (diff)
downloadsqlalchemy-ce6c1557a3e0eb49790521e2f0b366b19ce203cc.tar.gz
yikes return the modname if no lookup found...
-rw-r--r--doc/build/builder/autodoc_mods.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/build/builder/autodoc_mods.py b/doc/build/builder/autodoc_mods.py
index 25d139864..93e2596be 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.