27
27
"--non-interactive", "--parent-window-id",
28
28
"%s" % self.window_main.window.xid ]
31
(pid, stdin, stdout, stderr) = gobject.spawn_async(cmd, flags=flags)
32
gobject.child_watch_add(pid, self._on_synaptic_exit, (action, tempf))
31
(pid, stdin, stdout, stderr) = GObject.spawn_async(cmd, flags=flags)
32
GObject.child_watch_add(pid, self._on_synaptic_exit, (action, tempf))
34
34
def _on_synaptic_exit(self, pid, condition, data):