Remove space in print statements

This commit is contained in:
Ryan J. Dillon 2020-12-22 15:31:06 +01:00
parent 084d302b43
commit bac1a2d789

View File

@ -66,10 +66,10 @@ class OvenWatcher(threading.Thread):
'log': self.lastlog_subset(),
#'started': self.started
}
print (backlog)
print(backlog)
backlog_json = json.dumps(backlog)
try:
print (backlog_json)
print(backlog_json)
observer.send(backlog_json)
except:
log.error("Could not send backlog to new observer")