Fix naming issue in _handle_aes on the master

This commit is contained in:
Thomas S Hatch 2011-03-09 09:32:04 -07:00
parent 07cb8ec97b
commit 690093813b

View file

@ -174,7 +174,7 @@ class ReqServer(threading.Thread):
Handle a command sent via an aes key
'''
data = self.crypticle.loads(load)
return getattr(self, load['cmd'])(load)
return getattr(self, data['cmd'])(data)
def _auth(self, load):
'''