From: Mike Bayer Date: Sat, 25 Sep 2010 20:19:49 +0000 (-0400) Subject: - fix a typo that was apparently not really impacting anything X-Git-Tag: rel_0_6_5~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1648baa4bca7c4c3f2ab683ca34c2f271fc48f2;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix a typo that was apparently not really impacting anything --- diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index ed561bbeb2..219e3bf14b 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -2201,7 +2201,7 @@ class FromClause(Selectable): def _reset_exported(self): """delete memoized collections when a FromClause is cloned.""" - for attr in '_columns', '_primary_key_foreign_keys', \ + for attr in '_columns', '_primary_key', '_foreign_keys', \ 'locate_all_froms': self.__dict__.pop(attr, None)