diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-03 13:10:14 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-03 13:10:14 -0400 |
commit | 8a99c2f7b058c62a3f62c01e546f34478f9732d8 (patch) | |
tree | a1caa39234459dde8cdf01e55cd208cc22842685 /alembic/config.py | |
parent | ddec68e73711782edabd283614eb90a2da397fad (diff) | |
download | alembic-ticket_302.tar.gz |
- fix up docs and add changelogs for #301 and #302ticket_302
Diffstat (limited to 'alembic/config.py')
-rw-r--r-- | alembic/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alembic/config.py b/alembic/config.py index 74b4d17..b3fc36f 100644 --- a/alembic/config.py +++ b/alembic/config.py @@ -130,7 +130,7 @@ class Config(object): This is a utility dictionary which can include not just strings but engines, connections, schema objects, or anything else. Use this to pass objects into an env.py script, such as passing - a :class:`.Connection` when calling + a :class:`sqlalchemy.engine.base.Connection` when calling commands from :mod:`alembic.command` programmatically. .. versionadded:: 0.7.5 @@ -155,7 +155,7 @@ class Config(object): @util.memoized_property def file_config(self): - """Return the underlying :class:`ConfigParser` object. + """Return the underlying ``ConfigParser`` object. Direct access to the .ini file is available here, though the :meth:`.Config.get_section` and |