Update usr/lib/linuxmint/mintMenu/plugins/execute.py

Patch for bug #1127710 (https://bugs.launchpad.net/linuxmint/+bug/1127710)
This commit is contained in:
Yuya Kusakabe 2013-02-17 11:52:18 +09:00
parent 8da9a01db5
commit 097af08da9

View File

@ -1,4 +1,3 @@
import os import os
import subprocess import subprocess
@ -15,7 +14,7 @@ def RemoveArgs(Execline):
# Actually execute the command # Actually execute the command
def Execute( cmd ): def Execute( cmd ):
if isinstance( cmd, str ): if isinstance( cmd, str ) or isinstance( cmd, unicode):
if (cmd.find("/home/") >= 0) or (cmd.find("su-to-root") >= 0) or (cmd.find("\"") >= 0): if (cmd.find("/home/") >= 0) or (cmd.find("su-to-root") >= 0) or (cmd.find("\"") >= 0):
print "running manually..." print "running manually..."
os.system(cmd + " &") os.system(cmd + " &")