[Piuparts-commits] rev 350 - trunk

Holger Levsen holger at alioth.debian.org
Fri Apr 17 20:55:24 UTC 2009


Author: holger
Date: 2009-04-17 20:55:24 +0000 (Fri, 17 Apr 2009)
New Revision: 350

Modified:
   trunk/piuparts-report.py
Log:
fix syntax error, gah

Modified: trunk/piuparts-report.py
===================================================================
--- trunk/piuparts-report.py	2009-04-17 20:49:55 UTC (rev 349)
+++ trunk/piuparts-report.py	2009-04-17 20:55:24 UTC (rev 350)
@@ -741,7 +741,7 @@
             binaryrows = "<tr class=\"titlerow\"><td class=\"titlecell\" colspan=\"3\">Binary package(s) in "+self._config.section+"</td></tr>"
             for binary in binaries.split(", "):
               state = self._binary_db.state_by_name(binary)
-              binaryrows += "<tr class=\"normalrow\"><td class=\"contentcell2\">%s</td><td class=\"contentcell2\">%s</td><td class=\"contentcell2\">%s</td></tr>" % (binary, link_to_state_page(self._config.section,source,state), version)
+              binaryrows += "<tr class=\"normalrow\"><td class=\"contentcell2\">%s</td><td class=\"contentcell2\">%s</td><td class=\"contentcell2\">%s</td></tr>" % (binary, self.link_to_state_page(self._config.section,source,state), version)
               if state != "successfully-tested":
                 success = False
               if state == "failed-testing":




More information about the Piuparts-commits mailing list