diff options
author | fahim | 2015-04-13 15:49:07 +0530 |
---|---|---|
committer | fahim | 2015-04-13 15:49:07 +0530 |
commit | 859dbbe844fe4a21b5d802bb8ac2603a80aa3a34 (patch) | |
tree | ab3643ea193bbc5d70009e6d120cd55a68872964 /src/projManagement | |
parent | 3291b73955641525427639f28422c465b132ca21 (diff) | |
download | eSim-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/projManagement')
-rw-r--r-- | src/projManagement/Worker.py | 2 | ||||
-rw-r--r-- | src/projManagement/Worker.pyc | bin | 1425 -> 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 Binary files differindex 6a4021de..1144e9ed 100644 --- a/src/projManagement/Worker.pyc +++ b/src/projManagement/Worker.pyc |