743
743
pipe = multiprocessing.Pipe(duplex=False)
744
744
self.checker = multiprocessing.Process(
745
target=subprocess_call_pipe, args=(pipe[1], command),
746
args = (subprocess.call, pipe[1], command),
748
749
self.checker_callback_tag = gobject.io_add_watch(
749
750
pipe[0].fileno(), gobject.IO_IN,