From: Rachid Belaid Date: Thu, 7 Apr 2016 03:41:14 +0000 (-0700) Subject: Fix typo from "addreses" to "addresses" X-Git-Tag: rel_1_0_13~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47472dde24d9a3caf5f24d8fc2efca901a22302a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo from "addreses" to "addresses" (cherry picked from commit c8db0862c102281da617d395b1826ff523af302e) --- diff --git a/lib/sqlalchemy/orm/strategy_options.py b/lib/sqlalchemy/orm/strategy_options.py index 141f867f57..be792aa435 100644 --- a/lib/sqlalchemy/orm/strategy_options.py +++ b/lib/sqlalchemy/orm/strategy_options.py @@ -608,7 +608,7 @@ def load_only(loadopt, *attrs): ``Address`` object load only the ``email_address`` attribute:: session.query(User).options( - subqueryload("addreses").load_only("email_address") + subqueryload("addresses").load_only("email_address") ) For a :class:`.Query` that has multiple entities, the lead entity can be