Update usr/lib/linuxmint/mintMenu/plugins/execute.py
Patch for bug #1127710 (https://bugs.launchpad.net/linuxmint/+bug/1127710)
This commit is contained in:
parent
8da9a01db5
commit
097af08da9
@ -1,4 +1,3 @@
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
@ -15,7 +14,7 @@ def RemoveArgs(Execline):
|
||||
|
||||
# Actually execute the command
|
||||
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):
|
||||
print "running manually..."
|
||||
os.system(cmd + " &")
|
||||
|
Loading…
Reference in New Issue
Block a user