summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-09-28 12:43:36 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-09-28 12:43:36 -0400
commitec3e6c7dc2c03849b140c17e17e1efdc2f932a4a (patch)
treed82b8abf889248a00a18e4dc15508c380308e0f9 /lib/sqlalchemy/orm
parentabc8e45b2f94dee88aa712b21470d65f942f12b2 (diff)
downloadsqlalchemy-ec3e6c7dc2c03849b140c17e17e1efdc2f932a4a.tar.gz
- Fixed bug whereby columns on a mixin wouldn't propagate
correctly to a single-table inheritance scheme where the attribute name is different than that of the column. [ticket:1930]. Note [ticket:1931] which is the same issue for joined inh, not yet resolved.
Diffstat (limited to 'lib/sqlalchemy/orm')
-rw-r--r--lib/sqlalchemy/orm/attributes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/attributes.py b/lib/sqlalchemy/orm/attributes.py
index b56de5f05..ddaf62c7f 100644
--- a/lib/sqlalchemy/orm/attributes.py
+++ b/lib/sqlalchemy/orm/attributes.py
@@ -399,7 +399,7 @@ class AttributeImpl(object):
# Return a new, empty value
return self.initialize(state, dict_)
-
+
def append(self, state, dict_, value, initiator, passive=PASSIVE_OFF):
self.set(state, dict_, value, initiator, passive=passive)