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