Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
Author: zmedico
Date: 2008-10-13 00:21:01 +0000 (Mon, 13 Oct 2008)
New Revision: 11687
Modified:
main/trunk/pym/portage/__init__.py
Log:
Don't return from fetch() due to fetch restriction when in "listonly" mode.
Modified: main/trunk/pym/portage/__init__.py
===================================================================
--- main/trunk/pym/portage/__init__.py 2008-10-12 23:57:29 UTC (rev 11686)
+++ main/trunk/pym/portage/__init__.py 2008-10-13 00:21:01 UTC (rev 11687)
@@ -4095,6 +4095,8 @@
mysettings.pop("EBUILD_PHASE", None)
else:
mysettings["EBUILD_PHASE"] = ebuild_phase
+ if listonly:
+ continue
elif listonly:
continue
elif not filedict[myfile]:
|
|