Commit d3284805 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Typo fix

parent 7daa7d3a
...@@ -24,7 +24,7 @@ while True: ...@@ -24,7 +24,7 @@ while True:
if buffer.lstrip().upper().startswith("SELECT"): if buffer.lstrip().upper().startswith("SELECT"):
print cur.fetchall() print cur.fetchall()
except sqlite3.Error, e: except sqlite3.Error, e:
print "An error occured:", e.args[0] print "An error occurred:", e.args[0]
buffer = "" buffer = ""
con.close() con.close()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment