[Piuparts-commits] rev 907 - in trunk: . debian

Holger Levsen holger at alioth.debian.org
Mon Jun 27 07:17:41 UTC 2011


Author: holger
Date: 2011-06-27 07:17:41 +0000 (Mon, 27 Jun 2011)
New Revision: 907

Modified:
   trunk/debian/changelog
   trunk/piuparts-report.py
Log:
piuparts-report.py: correct a typo from the patch for #523950.

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2011-06-25 21:56:57 UTC (rev 906)
+++ trunk/debian/changelog	2011-06-27 07:17:41 UTC (rev 907)
@@ -2,6 +2,7 @@
 
   * Apply patch by Scott Schaefer to fix (Closes: 526045) ...
     needs proper changelog entry...
+  * piuparts-report.py: correct a typo from the patch for #523950.
 
  -- Holger Levsen <holger at debian.org>  Sat, 25 Jun 2011 23:33:49 +0200
 

Modified: trunk/piuparts-report.py
===================================================================
--- trunk/piuparts-report.py	2011-06-25 21:56:57 UTC (rev 906)
+++ trunk/piuparts-report.py	2011-06-27 07:17:41 UTC (rev 907)
@@ -422,11 +422,11 @@
 
 
 def html_protect(vstr):
-    vstr = "&".join(str.split("&"))
-    vstr = "<".join(str.split("<"))
-    vstr = ">".join(str.split(">"))
-    vstr = """.join(str.split('"'))
-    vstr = "'".join(str.split("'"))
+    vstr = "&".join(vstr.split("&"))
+    vstr = "<".join(vstr.split("<"))
+    vstr = ">".join(vstr.split(">"))
+    vstr = """.join(vstr.split('"'))
+    vstr = "'".join(vstr.split("'"))
     return vstr
 
 




More information about the Piuparts-commits mailing list