summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-06-24 21:14:45 +0000
committerZac Medico <zmedico@gentoo.org>2008-06-24 21:14:45 +0000
commit433f8f082c888376aa6496959f329c2439fb9221 (patch)
tree5fa75b20d548bca25804470ca4e7265bbb4e0291 /pym
parentClear dbapi caches just after deleting the depgraph in action_build(). (diff)
downloadportage-idfetch-433f8f082c888376aa6496959f329c2439fb9221.tar.gz
portage-idfetch-433f8f082c888376aa6496959f329c2439fb9221.tar.bz2
portage-idfetch-433f8f082c888376aa6496959f329c2439fb9221.zip
Bug #229233 - Fix Atom -> str breakage in the depgraph.display_problems()
package.provided warning message. svn path=/main/trunk/; revision=10771
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index ad91dde7..fea188f5 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -5213,7 +5213,7 @@ class depgraph(object):
refs.sort()
ref_string = ", ".join(["'%s'" % name for name in refs])
ref_string = " pulled in by " + ref_string
- msg.append(" %s%s\n" % (colorize("INFORM", arg), ref_string))
+ msg.append(" %s%s\n" % (colorize("INFORM", str(arg)), ref_string))
msg.append("\n")
if "world" in problems_sets:
msg.append("This problem can be solved in one of the following ways:\n\n")