From cea9cc5e8eb17e9ddee160bf5cfa29c438ef42df Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 18 Jun 2009 19:37:16 +0000 Subject: - repaired non-working attributes.set_committed_value function. --- lib/sqlalchemy/orm/attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/sqlalchemy/orm/attributes.py b/lib/sqlalchemy/orm/attributes.py index 4fe562110..2c26f34f2 100644 --- a/lib/sqlalchemy/orm/attributes.py +++ b/lib/sqlalchemy/orm/attributes.py @@ -1418,7 +1418,7 @@ def set_committed_value(instance, key, value): """ state, dict_ = instance_state(instance), instance_dict(instance) - state.get_impl(key).set_committed_value(state, dict_, key, value) + state.get_impl(key).set_committed_value(state, dict_, value) def set_attribute(instance, key, value): """Set the value of an attribute, firing history events. -- cgit v1.2.1