From: Mike Bayer Date: Tue, 17 Sep 2013 22:48:48 +0000 (-0500) Subject: fix typo [ticket:2827] X-Git-Tag: rel_0_9_0b1~77 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3c4b2d23dacc9e7e3b772c8384fa129db7d20d5;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo [ticket:2827] --- diff --git a/doc/build/orm/session.rst b/doc/build/orm/session.rst index 486c736ce4..5bd5d664dd 100644 --- a/doc/build/orm/session.rst +++ b/doc/build/orm/session.rst @@ -384,7 +384,7 @@ Keep the lifecycle of the session (and usually the transaction) session.query(FooBar).update({"x": 5}) class ThingTwo(object): - def go(self): + def go(self, session): session.query(Widget).update({"q": 18}) def run_my_program():