src/modules/flavor/elf.py
changeset 1600 14668d09ca60
parent 1582 c7ef4ea4f2f6
child 1715 8f305f0a6864
--- a/src/modules/flavor/elf.py	Thu Dec 17 10:54:08 2009 -0800
+++ b/src/modules/flavor/elf.py	Thu Dec 17 13:50:06 2009 -0800
@@ -57,11 +57,11 @@
                 self.tok = token
 
         def __str__(self):
-                return  _("%s (which will be installed at %s) had this token, "
-                    "%s, in its run path:%s.  It is not currently possible to "
-                    "automatically expand this token. Please specify its value "
-                    "on the command line.") % \
-                    (self.pp, self.ip, self.tok, self.rp)
+                return  _("%(pp)s (which will be installed at %(ip)s) had this "
+                    "token, %(tok)s, in its run path: %(rp)s.  It is not "
+                    "currently possible to automatically expand this token. "
+                    "Please specify its value on the command line.") % \
+                    self.__dict__
 
 
 class ElfDependency(base.PublishingDependency):