Merge pull request #22 from higebu/master

Patch for bug #1127710 (https://bugs.launchpad.net/linuxmint/+bug/1127710)
This commit is contained in:
Clement Lefebvre 2013-03-01 07:04:12 -08:00
commit 2af2a7ec81

View File

@ -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 + " &")