summaryrefslogtreecommitdiff
path: root/src/projManagement/Worker.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/projManagement/Worker.py')
-rw-r--r--src/projManagement/Worker.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/projManagement/Worker.py b/src/projManagement/Worker.py
index 00cad6a4..58078b86 100644
--- a/src/projManagement/Worker.py
+++ b/src/projManagement/Worker.py
@@ -23,16 +23,22 @@ class WorkerThread(QtCore.QThread):
def __init__(self,args):
QtCore.QThread.__init__(self)
self.args = args
-
+ '''
+ #Not Required
def __del__(self):
self.wait()
+ '''
def run(self):
print "Calling :",self.args
self.call_system(self.args)
def call_system(self,command):
print "System called"
- os.system(command)
+ try:
+ os.system(command)
+ print "PID",os.getpid()
+ except:
+ print "Unable to run the command"
\ No newline at end of file