From 93c978f8669a9b6d27e4ea3a3abd722cf28a4369 Mon Sep 17 00:00:00 2001 From: n0mjs710 Date: Wed, 9 Jan 2019 10:12:41 -0600 Subject: [PATCH] string testing for reporting push --- bridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge.py b/bridge.py index dfabca3..48c68fb 100755 --- a/bridge.py +++ b/bridge.py @@ -720,7 +720,7 @@ class bridgeReportFactory(reportFactory): def send_bridgeEvent(self, _data): if isinstance(_data, str): - #_data = _data.decode('utf-8', error='ignore') + _data = _data.decode('utf-8', error='ignore') self.send_clients(REPORT_OPCODES['BRDG_EVENT']+_data)