From: Zac Medico Date: Thu, 25 Dec 2008 01:08:19 +0000 (-0000) Subject: Remove the TaskScheduler.run() method since the constructor replaces it with X-Git-Tag: v2.1.6.3~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7e8643d643e02745c940b7b1cb3984a200469cd1;p=portage.git Remove the TaskScheduler.run() method since the constructor replaces it with the QueueScheduler.run() method. (trunk r12270) svn path=/main/branches/2.1.6/; revision=12304 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index d00fe37ce..2baf4c051 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -9084,9 +9084,6 @@ class TaskScheduler(object): def add(self, task): self._queue.add(task) - def run(self): - self._scheduler.schedule() - class JobStatusDisplay(object): _bound_properties = ("curval", "failed", "running")