[Pypi-checkins] r982 - trunk/pypi

richard python-checkins at python.org
Tue Sep 27 08:39:57 CEST 2011


Author: richard
Date: Tue Sep 27 08:39:57 2011
New Revision: 982

Modified:
   trunk/pypi/webui.py
Log:
don't double-escape this information

Modified: trunk/pypi/webui.py
==============================================================================
--- trunk/pypi/webui.py	(original)
+++ trunk/pypi/webui.py	Tue Sep 27 08:39:57 2011
@@ -1391,7 +1391,7 @@
 
         def values(col):
             l = self.store.get_release_relationships(name, version, col)
-            return [ cgi.escape(x['specifier']) for x in l]
+            return [x['specifier'] for x in l]
 
         categories = []
         is_py3k = False


More information about the Pypi-checkins mailing list