From: Mike Bayer Date: Mon, 14 Mar 2011 15:20:01 +0000 (-0400) Subject: fix "associated" at the source too X-Git-Tag: rel_0_7b3~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5d1e2df67048b77ef41626940189116ba98b2f0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix "associated" at the source too --- diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 223643c804..a6c7544b14 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -1175,7 +1175,7 @@ class ForeignKey(SchemaItem): if _get_table_key(tname, schema) not in parenttable.metadata: raise exc.NoReferencedTableError( - "Foreign key assocated with column '%s' could not find " + "Foreign key associated with column '%s' could not find " "table '%s' with which to generate a " "foreign key to target column '%s'" % (self.parent, tname, colname)) table = Table(tname, parenttable.metadata,