diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-29 15:23:33 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-29 15:23:33 -0500 |
commit | c056d73cb974a4e1cbb14d96a9bd4cf1e09c4f7d (patch) | |
tree | 41cd706b5b9e1960a84411d844a40e887d67c31f /lib/sqlalchemy/sql/selectable.py | |
parent | 3745fb0036bddf070f411a148bc9a3fcb212b426 (diff) | |
download | sqlalchemy-c056d73cb974a4e1cbb14d96a9bd4cf1e09c4f7d.tar.gz |
fix
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index 9fb99a4cd..11638b0ae 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -2942,7 +2942,7 @@ class TextAsFrom(SelectBase): """Wrap a :class:`.TextClause` construct within a :class:`.SelectBase` interface. - This allows the :class:`.Text` object to gain a ``.c`` collection and + This allows the :class:`.TextClause` object to gain a ``.c`` collection and other FROM-like capabilities such as :meth:`.FromClause.alias`, :meth:`.SelectBase.cte`, etc. |