Skip to content

Commit 97f8dfd

Browse files
committed
Merge pull request #331 from MartinThoma/master
README.rst: Added missing closing bracket
2 parents 3074c1d + 36a3006 commit 97f8dfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ The following examples make use of a simple table
112112
with connection.cursor() as cursor:
113113
# Read a single record
114114
sql = "SELECT `id`, `password` FROM `users` WHERE `email`=%s"
115-
cursor.execute(sql, ('webmaster@python.org',)
115+
cursor.execute(sql, ('webmaster@python.org',))
116116
result = cursor.fetchone()
117117
print(result)
118118
finally:

0 commit comments

Comments
 (0)