depgraph: use catsplit where appropriate
authorZac Medico <zmedico@gentoo.org>
Thu, 3 Feb 2011 07:39:09 +0000 (23:39 -0800)
committerZac Medico <zmedico@gentoo.org>
Thu, 3 Feb 2011 07:39:09 +0000 (23:39 -0800)
pym/_emerge/depgraph.py

index 27a854b7cc3fba3624dfe264e0385529ff04ec78..8f04c44f2b4c2988d3cf72dcdeda6a9f692b89c1 100644 (file)
@@ -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 = []