From b6d67fd66dda5f9f405f7634b9f67744bb4016bb Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 23 Sep 2017 13:35:01 +0100 Subject: [PATCH] docs: fix print syntax in example Fixes #32 --- docs/examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples.rst b/docs/examples.rst index 83902e5..6d43615 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -55,7 +55,7 @@ Connecting to APRS-IS is done using the :py:class:`aprslib.IS` module. import aprslib def callback(packet): - print packet + print(packet) AIS = aprslib.IS("N0CALL") AIS.connect()