From de10e5bd84dbd0571dcc03b8f61416b48b350238 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Sun, 14 Jun 2015 13:37:04 +0200 Subject: [PATCH] Fixed ubiquity not launching from mintmenu --- usr/lib/linuxmint/mintMenu/plugins/execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/execute.py b/usr/lib/linuxmint/mintMenu/plugins/execute.py index 30b02b3..ae71dab 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/execute.py +++ b/usr/lib/linuxmint/mintMenu/plugins/execute.py @@ -23,7 +23,7 @@ def Execute( cmd , commandCwd=None): cwd = tmpCwd 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("ubiquity") >= 0) or (cmd.find("/home/") >= 0) or (cmd.find("su-to-root") >= 0) or (cmd.find("\"") >= 0): print "running manually..." try: os.chdir(cwd)