From: Mike Bayer Date: Tue, 17 Sep 2013 22:48:48 +0000 (-0500) Subject: fix typo [ticket:2827] X-Git-Tag: rel_0_8_3~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e947c2c06abbcf4ea8df63f79e1efcfc367bd61;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo [ticket:2827] --- diff --git a/doc/build/orm/session.rst b/doc/build/orm/session.rst index 7626092f7e..fabd98808a 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():