From 1fc7bfe78847ce065c9cf267bdfd2a7d745d9bcb Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 13 Oct 2015 10:34:47 +0000 Subject: [PATCH] all env is now stored as lists git-svn-id: https://xpra.org/svn/Xpra/trunk@10828 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/xpra/platform/xposix/features.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/xpra/platform/xposix/features.py b/src/xpra/platform/xposix/features.py index a1525d54ad..6c3ed725b7 100644 --- a/src/xpra/platform/xposix/features.py +++ b/src/xpra/platform/xposix/features.py @@ -16,13 +16,13 @@ XDUMMY_WRAPPER = is_Fedora() DEFAULT_ENV = [ - ("#avoid Ubuntu's global menu, which is a mess and cannot be forwarded:", ), - ("UBUNTU_MENUPROXY", ""), - ("QT_X11_NO_NATIVE_MENUBAR", "1"), - ("#fix for MainSoft's MainWin buggy window management:", ), - ("MWNOCAPTURE", "true"), - ("MWNO_RIT", "true"), - ("MWWM", "allwm"), + "#avoid Ubuntu's global menu, which is a mess and cannot be forwarded:", + "UBUNTU_MENUPROXY=", + "QT_X11_NO_NATIVE_MENUBAR=1", + "#fix for MainSoft's MainWin buggy window management:", + "MWNOCAPTURE=true", + "MWNO_RIT=true", + "MWWM=allwm", ] DEFAULT_SSH_CMD = "ssh"