diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-07-31 01:21:01 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-07-31 01:21:01 +0000 |
commit | 8734eb49bcb479f35a87988b552d8667553f80ca (patch) | |
tree | 84cc7e60b24ab89d2570bd1cc65104d220d86e0f | |
parent | 14128bb63cf7825520b08a1226132dd957809cc5 (diff) | |
download | portage-8734eb49bcb479f35a87988b552d8667553f80ca.tar.gz portage-8734eb49bcb479f35a87988b552d8667553f80ca.tar.bz2 portage-8734eb49bcb479f35a87988b552d8667553f80ca.zip |
Change the numeric value of DepPriority.MIN to be equal to that of a satisfied PDEPEND since there is currently nothing with lower priority.
svn path=/main/trunk/; revision=7528
-rw-r--r-- | pym/emerge/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index de6766ffb..74d83220c 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -700,7 +700,7 @@ class DepPriority(object): MEDIUM = -1 MEDIUM_SOFT = -2 SOFT = -3 - MIN = -6 + MIN = -5 def __init__(self, **kwargs): for myattr in self.__slots__: if myattr == "__weakref__": @@ -721,7 +721,7 @@ class DepPriority(object): return -4 if self.runtime_post: return -5 - return -6 + return -5 def __lt__(self, other): return self.__int__() < other def __le__(self, other): |