Skip to content

Commit 994f420

Browse files
committed
Fix mail sender for py3
1 parent ab4a93c commit 994f420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/mail/send_queued_mail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
curs = connection.cursor()
3030
curs.execute("SELECT pg_try_advisory_lock(72181379)")
3131
if not curs.fetchall()[0][0]:
32-
print "Failed to get advisory lock, existing send_queued_mail process stuck?"
32+
print("Failed to get advisory lock, existing send_queued_mail process stuck?")
3333
connection.close()
3434
sys.exit(1)
3535

0 commit comments

Comments
 (0)