From: Richard Mitchell Date: Mon, 18 Mar 2013 17:40:23 +0000 (+0000) Subject: Fix typo. X-Git-Tag: rel_0_8_1~26^2~17^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3e1ef81dbd6a3b62218b73a476407867b6b0871;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo. --- diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 90e9067277..c40831e843 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -423,7 +423,7 @@ class SQLCompiler(engine.Compiled): name = orig_name = column.name if name is None: raise exc.CompileError("Cannot compile Column object until " - "it's 'name' is assigned.") + "its 'name' is assigned.") is_literal = column.is_literal if not is_literal and isinstance(name, sql._truncated_label):