Kevin Carrogan
Results
2
comments of
Kevin Carrogan
My recent changes fix the problems with trying to run remote shell. The actual error was the one highlighted by @0xdc but it was being masked by the sandbox context...
Not particularly elegant but I've always just done the parameter unpacking in the lambda itself e.g. ``` {{#hello}}Bob Bobbinson{{/hello}} def hello(args): first_name, last_name = args.split(' ') return 'Hello, %s of...