mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
fix zombie fix oops
This commit is contained in:
parent
d355a42af8
commit
43c09af8b1
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ def exec_command(executable, *parameters):
|
||||||
command = [executable]
|
command = [executable]
|
||||||
command.extend(parameters)
|
command.extend(parameters)
|
||||||
try:
|
try:
|
||||||
os.WEXITSTATUS(os.system(command[0] +" "+ command[1]))
|
os.WEXITSTATUS(os.system(command[0] + " \"%s\"" %command[1]))
|
||||||
except OSError:
|
except OSError:
|
||||||
import gtk
|
import gtk
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue