diff options
Diffstat (limited to 'scripts/mqtt_listener.py')
-rw-r--r-- | scripts/mqtt_listener.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mqtt_listener.py b/scripts/mqtt_listener.py index 1ff3176..69e62ad 100644 --- a/scripts/mqtt_listener.py +++ b/scripts/mqtt_listener.py @@ -33,7 +33,7 @@ tempsensors = [ # The callback for when the client receives a CONNACK response from the server. def on_connect(client, userdata, flags, rc): - print("Connected with result code " + str(rc)) + print(f"Connected with result code {rc}") # Subscribing in on_connect() means that if we lose the connection and # reconnect then subscriptions will be renewed. |