From 43c09af8b10c840060de78b2e921f5218ac6a98e Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sun, 9 Dec 2007 19:05:17 +0000 Subject: [PATCH] fix zombie fix oops --- src/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.py b/src/common.py index 4c1b53463..c72fcc34b 100644 --- a/src/common.py +++ b/src/common.py @@ -190,7 +190,7 @@ def exec_command(executable, *parameters): command = [executable] command.extend(parameters) try: - os.WEXITSTATUS(os.system(command[0] +" "+ command[1])) + os.WEXITSTATUS(os.system(command[0] + " \"%s\"" %command[1])) except OSError: import gtk