diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-18 11:00:47 -0700 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-18 11:00:47 -0700 |
commit | 72c4bdf735d8d81b6ff182d7cc15bbfe56078d12 (patch) | |
tree | c75a9e00d7b4d81aacf896ee9e5313c9016ae52b /lib/sqlalchemy/sql/compiler.py | |
parent | de9525a73e5166c1d624aba6580ad2316a0e87e0 (diff) | |
parent | c3e1ef81dbd6a3b62218b73a476407867b6b0871 (diff) | |
download | sqlalchemy-72c4bdf735d8d81b6ff182d7cc15bbfe56078d12.tar.gz |
merge plus fix the test spelling too
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 766039332..5a3a92a3e 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): |