This commit is contained in:
Andrew M. Kuchling 2006-07-28 12:18:22 +00:00
parent 9d93341489
commit 984b075978
1 changed files with 1 additions and 1 deletions

View File

@ -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()