diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-12-27 16:54:32 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-12-27 16:54:32 -0500 |
commit | 5343d24fee5219de002a8efba8bc882f8b3d4b5b (patch) | |
tree | ce994df2b8df10ed08e070192c0a05dfbb2e9ee5 /doc/build/conf.py | |
parent | 544e72bcb6af1ca657b1762f105634372eca3bc0 (diff) | |
download | sqlalchemy-5343d24fee5219de002a8efba8bc882f8b3d4b5b.tar.gz |
corrections
Diffstat (limited to 'doc/build/conf.py')
-rw-r--r-- | doc/build/conf.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/build/conf.py b/doc/build/conf.py index 02784bdae..22b377fa1 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -37,7 +37,7 @@ extensions = [ 'zzzeeksphinx', 'changelog', 'sphinx_paramlinks', - 'corrections' + #'corrections' ] # Add any paths that contain templates here, relative to this directory. @@ -79,7 +79,9 @@ autodocmods_convert_modname = { "sqlalchemy.sql.selectable": "sqlalchemy.sql.expression", "sqlalchemy.sql.dml": "sqlalchemy.sql.expression", "sqlalchemy.sql.ddl": "sqlalchemy.schema", - "sqlalchemy.sql.base": "sqlalchemy.sql.expression" + "sqlalchemy.sql.base": "sqlalchemy.sql.expression", + "sqlalchemy.engine.base": "sqlalchemy.engine", + "sqlalchemy.engine.result": "sqlalchemy.engine", } autodocmods_convert_modname_w_class = { @@ -192,7 +194,7 @@ html_title = "%s %s Documentation" % (project, version) # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['static'] +html_static_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. |