change stupid dict var name to something generic

pull/4/head
Blake DeMarcy 2017-03-03 00:10:21 -06:00
parent 5501bc6200
commit a4eb9f241a
1 changed files with 2 additions and 2 deletions

View File

@ -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):