projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b091cc
)
Implement BlockerDepPriority.__str__(). (trunk r12709)
author
Zac Medico
<zmedico@gentoo.org>
Wed, 11 Mar 2009 06:18:50 +0000
(06:18 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 11 Mar 2009 06:18:50 +0000
(06:18 -0000)
svn path=/main/branches/2.1.6/; revision=12964
pym/_emerge/__init__.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/__init__.py
b/pym/_emerge/__init__.py
index 0d7a3de19fa1296dd3e7e0a49260f156b1efc489..4c1c45e08f9368a0b0c2ca113f0e89a8cbe5a175 100644
(file)
--- a/
pym/_emerge/__init__.py
+++ b/
pym/_emerge/__init__.py
@@
-930,6
+930,9
@@
class BlockerDepPriority(DepPriority):
def __int__(self):
return 0
+ def __str__(self):
+ return 'blocker'
+
BlockerDepPriority.instance = BlockerDepPriority()
class UnmergeDepPriority(AbstractDepPriority):