diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2024-04-21 12:14:55 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2024-04-21 12:14:55 +0200 |
commit | 71b2901ba725d6b24c6ff73ac7c045c234a35fe4 (patch) | |
tree | f50606fd589c137c8f8539c729f588523bb3af82 | |
parent | 76e560c37e92c023e124f7b837787f4022657611 (diff) | |
download | hue-master.tar.gz |
This reverts commit 76e560c37e92c023e124f7b837787f4022657611.
-rwxr-xr-x | scd4x | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,10 +6,10 @@ import time import paho.mqtt.client as mqtt def on_connect(client, userdata, flags, rc): - print("connected", file = sys.stderr, flush = True) + print("connected", flush = True) def on_disconnect(client, userdata, rc): - print("disconnected", file = sys.stderr, flush = True) + print("disconnected", flush = True) def main(): if len(sys.argv) < 3: |