fix typo in stack tool

This commit is contained in:
Andy Smith
2011-01-04 14:37:04 -08:00
parent 6e81121231
commit 4cb5b29071

View File

@@ -139,7 +139,7 @@ if __name__ == '__main__':
method = args.pop(0)
params = {}
for x in args:
key, value = args.split('=', 1)
key, value = x.split('=', 1)
params[key] = value
pprint.pprint(do_request(controller, method, params))