From: Zac Medico Date: Sun, 21 Dec 2008 04:02:15 +0000 (-0000) Subject: Remove the TaskScheduler.run() method since the constructor replaces it with X-Git-Tag: v2.2_rc19~35 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=463f9efdc1c0c6ffb1a328552d994d41b8beea5f;p=portage.git Remove the TaskScheduler.run() method since the constructor replaces it with the QueueScheduler.run() method. svn path=/main/trunk/; revision=12270 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 4c978bb31..16b353427 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -9100,9 +9100,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")