From 6874ee22771e3e91dfa794c4287dcc812f6e0fc5 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 25 Apr 2019 17:23:12 -0500 Subject: [PATCH] remote_attr and local_attr refer to class bound attributes, not MapperProperty Change-Id: If5fee69474f295e8c4bef891f5360f6b54080bbf --- lib/sqlalchemy/ext/associationproxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py index d15eee6281..2e057fc020 100644 --- a/lib/sqlalchemy/ext/associationproxy.py +++ b/lib/sqlalchemy/ext/associationproxy.py @@ -433,7 +433,7 @@ class AssociationProxyInstance(object): @property def remote_attr(self): - """The 'remote' :class:`.MapperProperty` referenced by this + """The 'remote' class attribute referenced by this :class:`.AssociationProxyInstance`. .. seealso:: @@ -447,7 +447,7 @@ class AssociationProxyInstance(object): @property def local_attr(self): - """The 'local' :class:`.MapperProperty` referenced by this + """The 'local' class attribute referenced by this :class:`.AssociationProxyInstance`. .. seealso:: -- 2.47.3