Skip to content

Commit

Permalink
removed indent before "raise" in database section
Browse files Browse the repository at this point in the history
  • Loading branch information
stevekochscience committed Aug 1, 2012
1 parent e5b1838 commit 8f33e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/0.3/tutorial.md
Expand Up @@ -225,7 +225,7 @@ Now add another class:
def POST(self): def POST(self):
i = web.input() i = web.input()
n = db.insert('todo', title=i.title) n = db.insert('todo', title=i.title)
raise web.seeother('/') raise web.seeother('/')


(Notice how we're using `POST` for this?) (Notice how we're using `POST` for this?)


Expand Down

0 comments on commit 8f33e02

Please sign in to comment.