Something is wrong with run_command (or how we call it) for jigdo generation. This needs to be fixed to enable 1 for 1 jigdo generation from calling pyjigdo. It either needs to be fixed or the generation options disabled for an alpha release.
Moving to beta release.
The problem has to do with the way we pass "command" to subprocess.Popen - It expects a string to be one command - So "ls /home/admin" tries to find "ls /home/admin" in $PATH rather than executing ls with /home/admin as an argument. Making command this fixes it: ["ls", "/home/admin"]
Milestone Beta Release deleted