From 3a2d617f7f4232ae6f0e256e6b4327e48118ffbf Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 27 Aug 2012 17:55:21 -0400 Subject: call this "_proxies" since it's not really a public consumption attribute --- lib/sqlalchemy/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/schema.py') diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 8b46dc250..367b6e0b2 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -912,7 +912,7 @@ class Column(SchemaItem, expression.ColumnClause): # check if this Column is proxying another column if '_proxies' in kwargs: - self.proxies = kwargs.pop('_proxies') + self._proxies = kwargs.pop('_proxies') # otherwise, add DDL-related events elif isinstance(self.type, sqltypes.SchemaType): self.type._set_parent_with_dispatch(self) -- cgit v1.2.1