]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Corrected missing stop in the ORM Tutorial. Fixes #1395.
authorMichael Trier <mtrier@gmail.com>
Wed, 29 Apr 2009 00:14:09 +0000 (00:14 +0000)
committerMichael Trier <mtrier@gmail.com>
Wed, 29 Apr 2009 00:14:09 +0000 (00:14 +0000)
doc/build/ormtutorial.rst

index d4bc3e5ea38c133dac4343bf782edc794ed6e7b9..423c235d245772dd1deba73d41a439b511a8cfff 100644 (file)
@@ -1201,7 +1201,7 @@ Usage is not too different from what we've been doing.  Let's give Wendy some bl
     WHERE users.name = ?
      LIMIT 2 OFFSET 0
     ['wendy']
-
+    {stop}
     >>> post = BlogPost("Wendy's Blog Post", "This is a test", wendy)
     >>> session.add(post)