1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-20 04:48:00 +01:00

Scripts no longer fork into the background by default.

This commit is contained in:
imdano
2008-03-20 11:16:49 +00:00
parent a9f5e1ec06
commit 98b2547890

View File

@@ -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 """