From d5d1e2df67048b77ef41626940189116ba98b2f0 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 14 Mar 2011 11:20:01 -0400 Subject: [PATCH] fix "associated" at the source too --- lib/sqlalchemy/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.47.3