summaryrefslogtreecommitdiff
path: root/doc
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:04 -0400
commit78c339a113e9e679c44ddfe52fc40a6a1c7ecf4e (patch)
tree700103f87dbfcf43a3537d132e367499e02935e6 /doc
parent8665cf0f62137e0e015cba82385d893378ca3125 (diff)
downloadsqlalchemy-78c339a113e9e679c44ddfe52fc40a6a1c7ecf4e.tar.gz
yikes return the modname if no lookup found...
Diffstat (limited to 'doc')
-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 30eb0d068..e4841bbbc 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.