Comment 1 for bug 1706265

Revision history for this message
Paul Collins (pjdc) wrote :

I think it's because Check.__init__ does this:

        parts = shlex.split(check_cmd)

and then does this:

                    command += " " + " ".join(parts[1:])

instead of using shlex.join.