diff options
-rw-r--r-- | pym/_emerge/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 83e0d1af5..15771e154 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -2026,6 +2026,8 @@ class depgraph(object): xinfo = '"%s"' % atom if arg: xinfo='"%s"' % arg + # Discard null/ from failed cpv_expand category expansion. + xinfo = xinfo.replace("null/", "") if myparent: xfrom = '(dependency required by '+ \ green('"%s"' % myparent[2]) + \ |