From 849bbfe94c227cc0bf3737ee517fcc5bf67473c3 Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Tue, 24 Feb 2015 14:20:09 +0100 Subject: [PATCH] Don't pass env variable value through bash echo --- usr/lib/linuxmint/mintMenu/plugins/places.py | 1 - 1 file changed, 1 deletion(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/places.py b/usr/lib/linuxmint/mintMenu/plugins/places.py index 65c4ba0..ad72d9c 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/places.py +++ b/usr/lib/linuxmint/mintMenu/plugins/places.py @@ -181,7 +181,6 @@ class pluginclass( object ): from configobj import ConfigObj config = ConfigObj(home + "/.config/user-dirs.dirs") tmpdesktopDir = config['XDG_DESKTOP_DIR'] - tmpdesktopDir = commands.getoutput("echo " + tmpdesktopDir) if os.path.exists(tmpdesktopDir): desktopDir = tmpdesktopDir except Exception, detail: