diff options
author | Richard Mitchell <richard.j.mitchell@gmail.com> | 2013-03-18 17:40:23 +0000 |
---|---|---|
committer | Richard Mitchell <richard.j.mitchell@gmail.com> | 2013-03-18 17:40:23 +0000 |
commit | c3e1ef81dbd6a3b62218b73a476407867b6b0871 (patch) | |
tree | d1826d502bed1c5505d4732c307a6429fbdd9d56 /lib/sqlalchemy/sql/compiler.py | |
parent | 97d7123674ef39d1ed86bdab247b5322a28d16d7 (diff) | |
download | sqlalchemy-c3e1ef81dbd6a3b62218b73a476407867b6b0871.tar.gz |
Fix typo.
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 90e906727..c40831e84 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): |