Skip to content

Commit 365ad2a

Browse files
committed
Fix syntax error
1 parent 1723ed2 commit 365ad2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/includes/sqlite3/complete_statement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
if buffer.lstrip().upper().startswith("SELECT"):
2525
print(cur.fetchall())
2626
except sqlite3.Error as e:
27-
msg = str(e))
27+
msg = str(e)
2828
error_code = e.sqlite_errorcode
2929
error_name = e.sqlite_name
3030
print(f"Error {error_name} [Errno {error_code}]: {msg}")

0 commit comments

Comments
 (0)