From: Mike Bayer Date: Sat, 27 Dec 2014 17:47:57 +0000 (-0500) Subject: - typo fixes #3269 X-Git-Tag: rel_0_9_9~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d31461817514ae52b3170f7c433679d22c8c4e03;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - typo fixes #3269 (cherry picked from commit ef6dc0cf2ef581e7cb53dcb4840f678aa1fa5ba6) --- diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py index 1abc7519f0..9b323634b1 100644 --- a/lib/sqlalchemy/sql/elements.py +++ b/lib/sqlalchemy/sql/elements.py @@ -1207,7 +1207,7 @@ class TextClause(Executable, ClauseElement): E.g.:: - fom sqlalchemy import text + from sqlalchemy import text t = text("SELECT * FROM users") result = connection.execute(t)