Bug #229233 - Fix Atom -> str breakage in the depgraph.display_problems()
authorZac Medico <zmedico@gentoo.org>
Tue, 24 Jun 2008 21:14:45 +0000 (21:14 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 24 Jun 2008 21:14:45 +0000 (21:14 -0000)
package.provided warning message.

svn path=/main/trunk/; revision=10771

pym/_emerge/__init__.py

index ad91dde7a89773fc8233cf545c2243503ab3f948..fea188f513e473187679db69955a1e5d03af2258 100644 (file)
@@ -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")