[Pypi-checkins] r754 - trunk/pypi

martin.von.loewis python-checkins at python.org
Sun Apr 4 19:54:47 CEST 2010


Author: martin.von.loewis
Date: Sun Apr  4 19:54:47 2010
New Revision: 754

Modified:
   trunk/pypi/standalone.py
Log:
Add serversig to supported URLs.


Modified: trunk/pypi/standalone.py
==============================================================================
--- trunk/pypi/standalone.py	(original)
+++ trunk/pypi/standalone.py	Sun Apr  4 19:54:47 2010
@@ -9,7 +9,7 @@
         self.send_header('Content-Type', content_type)
 
     def run(self):
-        for scriptname in ('/mirrors', '/simple', '/pypi'):
+        for scriptname in ('/mirrors', '/simple', '/pypi', '/serversig'):
             if self.path.startswith(scriptname):
                 rest = self.path[len(scriptname):]
                 break


More information about the Pypi-checkins mailing list