diff options
author | Hyunjun Kim <kim@hyunjun.kr> | 2013-08-25 01:59:47 +0900 |
---|---|---|
committer | Hyunjun Kim <kim@hyunjun.kr> | 2013-08-25 05:06:14 +0900 |
commit | b9bd6ffd43a138f0b8964cae0657e478f9b4a13a (patch) | |
tree | d6c93d70f14cb3da26084bce635e4c95c085b795 /lib/sqlalchemy/orm/state.py | |
parent | 460b23731cba29d319f0e9a3bc5b6df518c9df73 (diff) | |
download | sqlalchemy-b9bd6ffd43a138f0b8964cae0657e478f9b4a13a.tar.gz |
fix typospr/23
Diffstat (limited to 'lib/sqlalchemy/orm/state.py')
-rw-r--r-- | lib/sqlalchemy/orm/state.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/state.py b/lib/sqlalchemy/orm/state.py index 7805a47e4..35305dc79 100644 --- a/lib/sqlalchemy/orm/state.py +++ b/lib/sqlalchemy/orm/state.py @@ -507,13 +507,13 @@ class AttributeState(object): to a particular attribute on a particular mapped object. The :class:`.AttributeState` object is accessed - via the :attr:`.InstanceState.attr` collection + via the :attr:`.InstanceState.attrs` collection of a particular :class:`.InstanceState`:: from sqlalchemy import inspect insp = inspect(some_mapped_object) - attr_state = insp.attr.some_attribute + attr_state = insp.attrs.some_attribute """ |