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: 2009-03-11 06:18:38 +0000 (Wed, 11 Mar 2009)
New Revision: 12963
Modified:
main/branches/2.1.6/pym/_emerge/__init__.py
Log:
Fix typo in DepPriority.__str__(). (trunk r12708)
Modified: main/branches/2.1.6/pym/_emerge/__init__.py
===================================================================
--- main/branches/2.1.6/pym/_emerge/__init__.py 2009-03-11 06:18:20 UTC (rev 12962)
+++ main/branches/2.1.6/pym/_emerge/__init__.py 2009-03-11 06:18:38 UTC (rev 12963)
@@ -921,7 +921,7 @@
return "buildtime"
if self.runtime:
return "runtime"
- if runtime_post:
+ if self.runtime_post:
return "runtime_post"
return "soft"
|
|