[yum-git] Branch 'yum-3_2_X' - yum/depsolve.py
James Antill
james at linux.duke.edu
Wed Jul 23 14:23:23 UTC 2008
yum/depsolve.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
New commits:
commit eb040f4c7604751382c7840a03947c8742550a3c
Author: James Antill <james at and.org>
Date: Wed Jul 23 10:23:15 2008 -0400
And fix _prco_req2req after the cleanup, testing is good
diff --git a/yum/depsolve.py b/yum/depsolve.py
index b97d297..27e5794 100644
--- a/yum/depsolve.py
+++ b/yum/depsolve.py
@@ -290,9 +290,8 @@ class Depsolve(object):
def _prco_req_nfv2req(rn, rf, rv):
return (rn, flags[rf], version_tuple_to_string(rv))
- @staticmethod
- def _prco_req2req(req):
- self._prco_req_nfv2req(req[0], req[1], req[2])
+ def _prco_req2req(self, req):
+ return self._prco_req_nfv2req(req[0], req[1], req[2])
def _requiringFromInstalled(self, requiringPo, requirement, errorlist):
"""processes the dependency resolution for a dep where the requiring
More information about the Yum-cvs-commits
mailing list