added volume plugin icons

fixed small bugs in error output
fixed some subprocess.communicate mistakes
fixed display bug in partition plugin
This commit is contained in:
lars 2006-11-03 14:27:55 +00:00
parent 2d7b34afaa
commit 5846c3b0f8
15 changed files with 16 additions and 16 deletions

View file

@ -16,7 +16,7 @@ def call_prog(progy):
proc = subprocess.Popen(
shell = False,
args = [progy])
proc.communicate()
proc.wait()
return proc.returncode == 0

View file

@ -46,6 +46,6 @@ class shutdown(CryptoBoxPlugin.CryptoBoxPlugin):
"plugin",
os.path.join(self.pluginDir, "root_action.py"),
action])
proc.communicate()
proc.wait()
return proc.returncode == 0