change stupid dict var name to something generic
This commit is contained in:
parent
5501bc6200
commit
a4eb9f241a
@ -12,8 +12,8 @@ class RequestHandler(StreamRequestHandler):
|
||||
"""
|
||||
|
||||
|
||||
def reply(self, dictionary):
|
||||
self.wfile.write(bytes(json.dumps(dictionary), "utf8"))
|
||||
def reply(self, obj):
|
||||
self.wfile.write(bytes(json.dumps(obj), "utf8"))
|
||||
|
||||
|
||||
def handle(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user