fix misspelling

This commit is contained in:
Martin/Geno 2019-06-23 03:02:29 +02:00
parent 536999d094
commit 2620713e1a
No known key found for this signature in database
GPG Key ID: 9D7D3C6BFF600C6A
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ func main() {
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM) signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
sig := <-sigs sig := <-sigs
log.Debug("stop recieve:", sig) log.Debug("stop receive:", sig)
ws.Close() ws.Close()

View File

@ -21,7 +21,7 @@ def get_handler(inputFile):
if name in nodeData: if name in nodeData:
ret[name] = nodeData[name] ret[name] = nodeData[name]
print("reponse: %s" % ret) print("response: %s" % ret)
return compress(str.encode(json.dumps(ret)))[2:-4] return compress(str.encode(json.dumps(ret)))[2:-4]
def handle(self): def handle(self):