From 98b25478902f9decd447b8992f9b27612e3c776a Mon Sep 17 00:00:00 2001 From: imdano <> Date: Thu, 20 Mar 2008 11:16:49 +0000 Subject: [PATCH] Scripts no longer fork into the background by default. --- misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc.py b/misc.py index 4cf334c..c47960b 100644 --- a/misc.py +++ b/misc.py @@ -104,7 +104,7 @@ def WriteLine(my_file, text): def ExecuteScript(script): """ Execute a command """ - os.system(script + ' &') + os.system(script) def ReadFile(filename): """ read in a file and return it's contents as a string """