- Introduced a local variable
return_code
to store the return code of the process. - The
handle_error
function now usesreturn_code
which is initially set to None. This avoids referencing theprocess
variable before it is assigned, in case the subprocess fails to launch.
Full Changelog: 0.0.14...0.0.15