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.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/projManagement/Worker.py b/src/projManagement/Worker.py
index 99d30ccc..9b9f57e4 100644
--- a/src/projManagement/Worker.py
+++ b/src/projManagement/Worker.py
@@ -19,6 +19,7 @@ from PyQt4 import QtCore
import subprocess
from configuration.Appconfig import Appconfig
+
class WorkerThread(QtCore.QThread):
"""
Initialise a QThread with the passed arguments
@@ -39,8 +40,6 @@ class WorkerThread(QtCore.QThread):
QtCore.QThread.__init__(self)
self.args = args
-
-
def __del__(self):
"""
__del__ is a called whenever garbage collection is initialised
@@ -54,7 +53,6 @@ class WorkerThread(QtCore.QThread):
"""
self.wait()
-
def run(self):
"""
run is the function that is called, when we start the thread as
@@ -77,8 +75,8 @@ class WorkerThread(QtCore.QThread):
track processes called
@params
- :command => (self.args) takes space separated string of comamnds to
- be executed in different child processes
+ :command => (self.args) takes space separated string of\
+ comamnds to be executed in different child processes
(see subproces.Popen())
"""