caught is the right pp of catch; thanks to Don Bennett from docs@

This commit is contained in:
Sandro Tosi 2011-10-31 02:41:06 +01:00
parent 6f45d18c24
commit 567493fe26
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ with con:
con.execute("insert into person(firstname) values (?)", ("Joe",))
# con.rollback() is called after the with block finishes with an exception, the
# exception is still raised and must be catched
# exception is still raised and must be caught
try:
with con:
con.execute("insert into person(firstname) values (?)", ("Joe",))