From 650089d24c87b25fa239b4a5ba8081b528951c48 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Mon, 28 Jan 2013 12:40:18 +0100 Subject: [PATCH] Fix module.run_command usage in fireball --- fireball | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fireball b/fireball index 6eb363723ed..11a0b61188d 100644 --- a/fireball +++ b/fireball @@ -143,7 +143,7 @@ def daemonize_self(module, password, port, minutes): os.dup2(dev_null.fileno(), sys.stderr.fileno()) log("daemonizing successful (%s,%s)" % (password, port)) -def command(data): +def command(module, data): if 'cmd' not in data: return dict(failed=True, msg='internal error: cmd is required') if 'tmp_path' not in data: @@ -220,7 +220,7 @@ def serve(module, password, port, minutes): response = {} if mode == 'command': - response = command(data) + response = command(module, data) elif mode == 'put': response = put(data) elif mode == 'fetch':