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:
parent
2d7b34afaa
commit
5846c3b0f8
15 changed files with 16 additions and 16 deletions
|
@ -16,7 +16,7 @@ def call_prog(progy):
|
|||
proc = subprocess.Popen(
|
||||
shell = False,
|
||||
args = [progy])
|
||||
proc.communicate()
|
||||
proc.wait()
|
||||
return proc.returncode == 0
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue