fix: [pystemon-feeder] fix #234

This commit is contained in:
Terrtia 2018-08-13 10:22:20 +02:00
parent 000d5bf40a
commit 6f2dbcb4e2
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -62,12 +62,13 @@ while True:
print(paste) print(paste)
if paste is None: if paste is None:
continue continue
socket.send("%d %s" % (topic, paste)) socket.send_string("%d %s" % (topic, paste))
topic = 102 topic = 102
try: try:
messagedata = open(pystemonpath+paste).read() with open(pystemonpath+paste, 'rb') as f: #.read()
socket.send("%d %s %s" % (topic, paste, base64.b64encode(messagedata))) messagedata = f.read()
sleep_inc = sleep_inc-0.01 if sleep_inc-0.01 > 0 else 0 socket.send_string("%d %s %s" % (topic, paste, base64.b64encode(messagedata).decode()))
sleep_inc = sleep_inc-0.01 if sleep_inc-0.01 > 0 else 0
except IOError as e: except IOError as e:
# file not found, could be a buffering issue -> increase sleeping time # file not found, could be a buffering issue -> increase sleeping time
print('IOError: Increasing sleep time') print('IOError: Increasing sleep time')