Skip to content

Commit a1eab02

Browse files
cdaringeasvetlov
authored andcommitted
fix(examples): remove unmatched single quote (#476)
1 parent 25d726f commit a1eab02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/notify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ async def notify(conn):
99
for i in range(5):
1010
msg = "message {}".format(i)
1111
print('Send ->', msg)
12-
await cur.execute("NOTIFY channel, %s'", (msg,))
12+
await cur.execute("NOTIFY channel, %s", (msg,))
1313

1414
await cur.execute("NOTIFY channel, 'finish'")
1515

0 commit comments

Comments
 (0)