Typo in documentation

Issue #2827 resolved
Former user created an issue

http://docs.sqlalchemy.org/en/rel_0_8/orm/session.html#session-faq-whentocreate

class ThingTwo(object): def go(self): session.query(Widget).update({'q' : 18})

session is not in scope I think it should be class ThingTwo(object): def go(self, session): ...

Comments (2)

  1. Log in to comment