From 62cb52cdda7edc71e3c0eebb0cbaee4f26b0fb69 Mon Sep 17 00:00:00 2001 From: Kaushal Date: Sun, 26 Aug 2018 18:32:08 +0530 Subject: [PATCH] gnome-terminal fixed --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 119bad7..26a20dd 100755 --- a/main.py +++ b/main.py @@ -133,7 +133,7 @@ class FLOappStore: if(app["type"] == "Gui"): subprocess.Popen(app["exec"], cwd=app["location"]) elif(app["type"] == "Cmdline"): - subprocess.Popen(["gnome-terminal --command",app["exec"]],cwd=app["location"],stdout=subprocess.PIPE,shell=True) + subprocess.Popen(["gnome-terminal --command "+app["exec"]],cwd=app["location"],stdout=subprocess.PIPE,shell=True) def openBrowserApp(self,app): self.appWin.destroy()