From: Zac Medico Date: Wed, 25 Jun 2008 19:45:07 +0000 (-0000) Subject: Fix Atom -> str breakage in depgraph.saveNomergeFavorites(). Thanks to X-Git-Tag: v2.2_rc2~335 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8e70599090d960c47b9d5ad1baa2b7836a3305d8;p=portage.git Fix Atom -> str breakage in depgraph.saveNomergeFavorites(). Thanks to grobian and darsiide. svn path=/main/trunk/; revision=10785 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 2056d44a2..79b38f64d 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -5465,7 +5465,7 @@ class depgraph(object): all_added.sort() for a in all_added: print ">>> Recording %s in \"world\" favorites file..." % \ - colorize("INFORM", a) + colorize("INFORM", str(a)) if all_added: world_set.update(all_added) world_set.unlock()