From: Zac Medico Date: Thu, 3 Feb 2011 07:39:09 +0000 (-0800) Subject: depgraph: use catsplit where appropriate X-Git-Tag: v2.2.0_alpha20~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f3827387522ab3c9fef1c8d5efb56f2eb3e75731;p=portage.git depgraph: use catsplit where appropriate --- diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 27a854b7c..8f04c44f2 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -2624,7 +2624,7 @@ class depgraph(object): writemsg_stdout("\nemerge: there are no ebuilds to satisfy "+green(xinfo)+".\n", noiselevel=-1) if isinstance(myparent, AtomArg): cp = myparent.atom.cp - cat, pkg = cp.split("/") + cat, pkg = portage.catsplit(cp) if cat == "null": cat = None @@ -2642,7 +2642,7 @@ class depgraph(object): else: pkg_to_cp = {} for other_cp in all_cp: - other_pkg = other_cp.split("/")[1] + other_pkg = portage.catsplit(other_cp)[1] pkg_to_cp.setdefault(other_pkg, set()).add(other_cp) pkg_matches = difflib.get_close_matches(pkg, pkg_to_cp) matches = []