From 3a9a68672eae219755601d1d5172c5bc7beed052 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Mon, 10 Oct 2016 14:53:40 +0200 Subject: [PATCH] Fix syntax issue in Firehose websocket example Change-Id: Ie7435c404f89bdc7646b62a4b1eb1e80b201f666 --- doc/source/firehose.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/firehose.rst b/doc/source/firehose.rst index 719f653bfa..0c347b9ea4 100644 --- a/doc/source/firehose.rst +++ b/doc/source/firehose.rst @@ -143,7 +143,7 @@ on the firehose and print it to STDOUT def on_connect(client, userdata, flags, rc): print("Connected with result code " + str(rc)) - client.subscribe('#') + client.subscribe('#') def on_message(client, userdata, msg): print(msg.topic+" "+str(msg.payload))