From 3e947c2c06abbcf4ea8df63f79e1efcfc367bd61 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 17 Sep 2013 17:48:48 -0500 Subject: [PATCH] fix typo [ticket:2827] --- doc/build/orm/session.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(): -- 2.47.2