From 30dd19316903cb84317929fe70cc7034c5188496 Mon Sep 17 00:00:00 2001 From: monsta Date: Mon, 3 Nov 2014 20:43:03 +0300 Subject: [PATCH] removed unused stuff --- usr/lib/linuxmint/mintMenu/plugins/execute.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/execute.py b/usr/lib/linuxmint/mintMenu/plugins/execute.py index ab5d494..30b02b3 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/execute.py +++ b/usr/lib/linuxmint/mintMenu/plugins/execute.py @@ -1,7 +1,6 @@ #!/usr/bin/python import os -import subprocess def RemoveArgs(Execline): NewExecline = [] @@ -40,7 +39,6 @@ def Execute( cmd , commandCwd=None): os.chdir( cwd ) string = ' '.join(cmd) string = string + " &" - #subprocess.Popen( cmd ) // use os.system instead of popen so children don't end up in zombie waiting for us to wait() for them os.system(string) return True except Exception, detail: