Skip to content

Commit abac603

Browse files
committed
Update print to function in example
Update print to function in `examples/message_create.py`. The `print` statement becomes the `print()` function in Python 3.
1 parent fec974d commit abac603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/message_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
print(' scheduledDatetime : %s' % msg.scheduledDatetime)
3232
print(' createdDatetime : %s' % msg.createdDatetime)
3333
print(' recipients : %s\n' % msg.recipients)
34-
print
34+
print()
3535

3636
except messagebird.client.ErrorException as e:
3737
print('\nAn error occured while requesting a Message object:\n')

0 commit comments

Comments
 (0)