diff options
author | Fahim | 2016-03-01 17:24:00 +0530 |
---|---|---|
committer | Fahim | 2016-03-01 17:24:00 +0530 |
commit | 9347ac2e7c7d7c0693cd85327297b519196dbb90 (patch) | |
tree | e296f8b423f063bef60cc6115f6d6b3adfe5e3c8 /src/projManagement/Worker.py | |
parent | 44d403c92bf62a8885e2a2cddf2bd4019c5532b9 (diff) | |
download | eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.tar.gz eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.tar.bz2 eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.zip |
Remove all unwanted print command
Diffstat (limited to 'src/projManagement/Worker.py')
-rw-r--r-- | src/projManagement/Worker.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/projManagement/Worker.py b/src/projManagement/Worker.py index f7186913..9721f4a7 100644 --- a/src/projManagement/Worker.py +++ b/src/projManagement/Worker.py @@ -18,7 +18,6 @@ from PyQt4 import QtCore import subprocess from configuration.Appconfig import Appconfig -import os class WorkerThread(QtCore.QThread): """ @@ -31,11 +30,9 @@ class WorkerThread(QtCore.QThread): def __del__(self): self.wait() - - - + def run(self): - print "Calling Command:",self.args + print "Worker Thread Calling Command :",self.args self.call_system(self.args) def call_system(self,command): |