Corrected bug: .upper() would fail if GDMSESSION variable was not set

This commit is contained in:
Gwendal Le Bihan 2011-08-29 15:44:29 +02:00
parent 6f34403964
commit e719f985d8

View File

@ -55,10 +55,10 @@ ICON = "/usr/lib/linuxmint/mintMenu/visualisation-logo.png"
sys.path.append( os.path.join( PATH , "plugins") ) sys.path.append( os.path.join( PATH , "plugins") )
# FIX: Get the window manager from the GDMSESSION environment variable, fallback to GNOME if it's not set # FIX: Get the window manager from the GDMSESSION environment variable, fallback to GNOME if it's not set
windowManager = os.getenv("GDMSESSION").upper() windowManager = os.getenv("GDMSESSION")
if not windowManager: if not windowManager:
windowManager = "GNOME" windowManager = "GNOME"
xdg.Config.setWindowManager( windowManager ) xdg.Config.setWindowManager( windowManager.upper() )
from easybuttons import iconManager from easybuttons import iconManager
from easygconf import EasyGConf from easygconf import EasyGConf