diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-06-18 19:37:16 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-06-18 19:37:16 +0000 |
| commit | cea9cc5e8eb17e9ddee160bf5cfa29c438ef42df (patch) | |
| tree | 9700f38cd0f6eb4a9760006014bd9327a0893918 /lib/sqlalchemy | |
| parent | 8a72a5b0bc5fe5a276623e40499dede629391d1c (diff) | |
| download | sqlalchemy-cea9cc5e8eb17e9ddee160bf5cfa29c438ef42df.tar.gz | |
- repaired non-working attributes.set_committed_value function.
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/orm/attributes.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
