Signed-off-by: Petr Lautrbach <lautrbach@xxxxxxxxxx> --- sandbox/sandbox | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sandbox/sandbox b/sandbox/sandbox index fe631a92cecd..c2ae4de69128 100644 --- a/sandbox/sandbox +++ b/sandbox/sandbox @@ -479,7 +479,10 @@ sandbox [-h] [-l level ] [-[X|M] [-H homedir] [-T tempdir]] [-I includefile ] [- xmodmapfile = self.__homedir + "/.xmodmap" xd = open(xmodmapfile, "w") - subprocess.Popen(["/usr/bin/xmodmap", "-pke"], stdout=xd).wait() + try: + subprocess.Popen(["/usr/bin/xmodmap", "-pke"], stdout=xd).wait() + except: + pass xd.close() self.__setup_sandboxrc(self.__options.wm) -- 2.45.0