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_1_0b1~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8db0862c102281da617d395b1826ff523af302e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo from "addreses" to "addresses" --- diff --git a/lib/sqlalchemy/orm/strategy_options.py b/lib/sqlalchemy/orm/strategy_options.py index 796c17ec42..b7084cc22a 100644 --- a/lib/sqlalchemy/orm/strategy_options.py +++ b/lib/sqlalchemy/orm/strategy_options.py @@ -615,7 +615,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