summaryrefslogtreecommitdiff
path: root/alembic/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'alembic/config.py')
-rw-r--r--alembic/config.py4
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