diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-07-28 12:18:22 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-07-28 12:18:22 (GMT) |
commit | 984b07597813f972c1f1761cacbd7ace5315054b (patch) | |
tree | c63926177410767e99a3fd6ea081428c47b32837 /Doc | |
parent | 9d93341489b38acf1029322c1997ecb0b6be22a0 (diff) | |
download | cpython-984b07597813f972c1f1761cacbd7ace5315054b.zip cpython-984b07597813f972c1f1761cacbd7ace5315054b.tar.gz cpython-984b07597813f972c1f1761cacbd7ace5315054b.tar.bz2 |
Typo fix
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/sqlite3/complete_statement.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/sqlite3/complete_statement.py b/Doc/lib/sqlite3/complete_statement.py index 89fc250..22525e3 100644 --- a/Doc/lib/sqlite3/complete_statement.py +++ b/Doc/lib/sqlite3/complete_statement.py @@ -24,7 +24,7 @@ while True: if buffer.lstrip().upper().startswith("SELECT"): print cur.fetchall() except sqlite3.Error, e: - print "An error occured:", e.args[0] + print "An error occurred:", e.args[0] buffer = "" con.close() |