diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2011-04-11 18:40:36 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2011-09-14 22:58:36 +0200 |
| commit | 9d1c22ed6298d6fa303f7e129d937df06e1bac7d (patch) | |
| tree | cfb2e0d1ad86397ee6319271718a0ff1878b1a81 /lib/python/Components/Task.py | |
| parent | 2d3dfd7793532da77fc3f2cdb2b5bc282703dc15 (diff) | |
| download | enigma2-9d1c22ed6298d6fa303f7e129d937df06e1bac7d.tar.gz enigma2-9d1c22ed6298d6fa303f7e129d937df06e1bac7d.zip | |
[TaskView] upon cancelling waiting jobs, remove them from jobmanager queue all the way
Diffstat (limited to 'lib/python/Components/Task.py')
| -rw-r--r-- | lib/python/Components/Task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Task.py b/lib/python/Components/Task.py index 3a755405..86769233 100644 --- a/lib/python/Components/Task.py +++ b/lib/python/Components/Task.py @@ -108,7 +108,6 @@ class Job(object): self.tasks[i].abort() def cancel(self): - # some Jobs might have a better idea of how to cancel a job self.abort() class Task(object): @@ -305,6 +304,7 @@ class JobManager: list.append(self.active_job) list += self.active_jobs return list + # some examples: #class PartitionExistsPostcondition: # def __init__(self, device): |
