projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31cda99
)
Remove redundant failed_packages check from Scheduler._main_loop() since
author
Zac Medico
<zmedico@gentoo.org>
Sun, 13 Jul 2008 23:25:23 +0000
(23:25 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sun, 13 Jul 2008 23:25:23 +0000
(23:25 -0000)
it's now handled inside the _schedule() call.
svn path=/main/trunk/; revision=11043
pym/_emerge/__init__.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/__init__.py
b/pym/_emerge/__init__.py
index b3f06aaba8d99c8a7fc009f39a7e3b4eee40a6b3..e4e184ad2181558c5eefd2a6cf0d2dbfe6378a80 100644
(file)
--- a/
pym/_emerge/__init__.py
+++ b/
pym/_emerge/__init__.py
@@
-8880,8
+8880,7
@@
class Scheduler(PollScheduler):
merge_queue = self._task_queues.merge
- while not self._failed_pkgs and \
- self._schedule():
+ while self._schedule():
self._poll_loop()
while self._jobs or merge_queue: