Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
Author: zmedico
Date: 2008-12-20 19:45:55 +0000 (Sat, 20 Dec 2008)
New Revision: 12261
Modified:
main/branches/2.1.6/pym/_emerge/__init__.py
Log:
Fix DependencyArg.__str__() to ensure that str type is always returned.
(trunk r12258)
Modified: main/branches/2.1.6/pym/_emerge/__init__.py
===================================================================
--- main/branches/2.1.6/pym/_emerge/__init__.py 2008-12-20 19:36:50 UTC (rev 12260)
+++ main/branches/2.1.6/pym/_emerge/__init__.py 2008-12-20 19:45:55 UTC (rev 12261)
@@ -3791,7 +3791,7 @@
self.root_config = root_config
def __str__(self):
- return self.arg
+ return str(self.arg)
class AtomArg(DependencyArg):
def __init__(self, atom=None, **kwargs):
|
|