From 859dbbe844fe4a21b5d802bb8ac2603a80aa3a34 Mon Sep 17 00:00:00 2001 From: fahim Date: Mon, 13 Apr 2015 15:49:07 +0530 Subject: Subject: Added command.split Description: Added command.split in Worker's run method --- src/projManagement/Worker.py | 2 +- src/projManagement/Worker.pyc | Bin 1425 -> 1441 bytes 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'src/projManagement') diff --git a/src/projManagement/Worker.py b/src/projManagement/Worker.py index 96f0d57b..641d6ee8 100644 --- a/src/projManagement/Worker.py +++ b/src/projManagement/Worker.py @@ -36,7 +36,7 @@ class WorkerThread(QtCore.QThread): def call_system(self,command): print "System called" procThread = Appconfig() - proc = subprocess.Popen(command) + proc = subprocess.Popen(command.split()) procThread.procThread_list.append(proc) \ No newline at end of file diff --git a/src/projManagement/Worker.pyc b/src/projManagement/Worker.pyc index 6a4021de..1144e9ed 100644 Binary files a/src/projManagement/Worker.pyc and b/src/projManagement/Worker.pyc differ -- cgit