Merge pull request #998 from 2xB/fix_461

Fix QtProcess proxy transmitting small multidimensional arrays
This commit is contained in:
Ogi Moore 2019-08-16 21:21:46 -07:00 committed by GitHub
commit 67433a1451
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -458,7 +458,7 @@ class RemoteEventHandler(object):
## follow up by sending byte messages
if byteData is not None:
for obj in byteData: ## Remote process _must_ be prepared to read the same number of byte messages!
self.conn.send_bytes(obj)
self.conn.send_bytes(bytes(obj))
self.debugMsg(' sent %d byte messages', len(byteData))
self.debugMsg(' call sync: %s', callSync)