summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfahim2015-04-13 15:49:07 +0530
committerfahim2015-04-13 15:49:07 +0530
commit859dbbe844fe4a21b5d802bb8ac2603a80aa3a34 (patch)
treeab3643ea193bbc5d70009e6d120cd55a68872964 /src
parent3291b73955641525427639f28422c465b132ca21 (diff)
downloadeSim-859dbbe844fe4a21b5d802bb8ac2603a80aa3a34.tar.gz
eSim-859dbbe844fe4a21b5d802bb8ac2603a80aa3a34.tar.bz2
eSim-859dbbe844fe4a21b5d802bb8ac2603a80aa3a34.zip
Subject: Added command.split
Description: Added command.split in Worker's run method
Diffstat (limited to 'src')
-rw-r--r--src/projManagement/Worker.py2
-rw-r--r--src/projManagement/Worker.pycbin1425 -> 1441 bytes
2 files changed, 1 insertions, 1 deletions
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
--- a/src/projManagement/Worker.pyc
+++ b/src/projManagement/Worker.pyc
Binary files differ