projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f12e245
)
Implement BlockerDepPriority.__str__().
author
Zac Medico
<zmedico@gentoo.org>
Thu, 26 Feb 2009 00:00:59 +0000
(
00:00
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 26 Feb 2009 00:00:59 +0000
(
00:00
-0000)
svn path=/main/trunk/; revision=12709
pym/_emerge/__init__.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/__init__.py
b/pym/_emerge/__init__.py
index 3461958bf86d0dd999c9286b352b5d8445cc62c5..1d70742af13e5b38ae1241d36cea590293f252de 100644
(file)
--- a/
pym/_emerge/__init__.py
+++ b/
pym/_emerge/__init__.py
@@
-949,6
+949,9
@@
class BlockerDepPriority(DepPriority):
def __int__(self):
return 0
+ def __str__(self):
+ return 'blocker'
+
BlockerDepPriority.instance = BlockerDepPriority()
class UnmergeDepPriority(AbstractDepPriority):