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: 2009-03-11 06:18:50 +0000 (Wed, 11 Mar 2009)
New Revision: 12964
Modified:
main/branches/2.1.6/pym/_emerge/__init__.py
Log:
Implement BlockerDepPriority.__str__(). (trunk r12709)
Modified: main/branches/2.1.6/pym/_emerge/__init__.py
===================================================================
--- main/branches/2.1.6/pym/_emerge/__init__.py 2009-03-11 06:18:38 UTC (rev 12963)
+++ main/branches/2.1.6/pym/_emerge/__init__.py 2009-03-11 06:18:50 UTC (rev 12964)
@@ -930,6 +930,9 @@
def __int__(self):
return 0
+ def __str__(self):
+ return 'blocker'
+
BlockerDepPriority.instance = BlockerDepPriority()
class UnmergeDepPriority(AbstractDepPriority):
|
|