]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo.
authorRichard Mitchell <richard.j.mitchell@gmail.com>
Mon, 18 Mar 2013 17:40:23 +0000 (17:40 +0000)
committerRichard Mitchell <richard.j.mitchell@gmail.com>
Mon, 18 Mar 2013 17:40:23 +0000 (17:40 +0000)
lib/sqlalchemy/sql/compiler.py

index 90e9067277eb9e44823953ba51e19dacadef1e08..c40831e8438fc0b620c18950803d01a165382b63 100644 (file)
@@ -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):