No longer check for tmp_path being sent as we don't use it here anyway

This commit is contained in:
Toshio Kuratomi 2015-09-24 13:28:28 -07:00 committed by Matt Clay
parent dbf882a600
commit e7d9d86ec9

View file

@ -472,8 +472,6 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
def command(self, data):
if 'cmd' not in data:
return dict(failed=True, msg='internal error: cmd is required')
if 'tmp_path' not in data:
return dict(failed=True, msg='internal error: tmp_path is required')
vvvv("executing: %s" % data['cmd'])