[Pypi-checkins] r873 - trunk/pypi

martin.von.loewis python-checkins at python.org
Sun Sep 26 08:57:08 CEST 2010


Author: martin.von.loewis
Date: Sun Sep 26 08:57:07 2010
New Revision: 873

Modified:
   trunk/pypi/webui.py
Log:
Eliminate some more Cheese Shop mentionings.


Modified: trunk/pypi/webui.py
==============================================================================
--- trunk/pypi/webui.py	(original)
+++ trunk/pypi/webui.py	Sun Sep 26 08:57:07 2010
@@ -62,7 +62,7 @@
 __version__ = '1.1'
 
 # email sent to user indicating how they should complete their registration
-rego_message = '''Subject: Complete your Cheese Shop registration
+rego_message = '''Subject: Complete your PyPI registration
 From: %(admin)s
 To: %(email)s
 
@@ -74,7 +74,7 @@
 '''
 
 # password change request email
-password_change_message = '''Subject: Cheese Shop password change request
+password_change_message = '''Subject: PyPI password change request
 From: %(admin)s
 To: %(email)s
 
@@ -89,7 +89,7 @@
 '''
 
 # password reset email - indicates what the password is now
-password_message = '''Subject: Cheese Shop password has been reset
+password_message = '''Subject: PyPI password has been reset
 From: %(admin)s
 To: %(email)s
 
@@ -386,7 +386,7 @@
         self.handler.end_headers()
         self.wfile.write(content.encode('utf-8'))
 
-    def fail(self, message, title="Python Cheese Shop", code=400,
+    def fail(self, message, title="Python Package Index", code=400,
             heading=None, headers={}, content=''):
         ''' Indicate to the user that something has failed.
         '''


More information about the Pypi-checkins mailing list