Fix some typos.
[portage.git] / pym / _emerge / BlockerDepPriority.py
1 # Copyright 1999-2009 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3
4 from _emerge.DepPriority import DepPriority
5 class BlockerDepPriority(DepPriority):
6         __slots__ = ()
7         def __int__(self):
8                 return 0
9
10         def __str__(self):
11                 return 'blocker'
12
13 BlockerDepPriority.instance = BlockerDepPriority()