[Pypi-checkins] r785 - trunk/pypi

georg.brandl python-checkins at python.org
Fri Jul 23 18:15:15 CEST 2010


Author: georg.brandl
Date: Fri Jul 23 18:15:15 2010
New Revision: 785

Modified:
   trunk/pypi/webui.py
Log:
In the "registered ok" message, indicate that the user has to visit the confirm link.

Modified: trunk/pypi/webui.py
==============================================================================
--- trunk/pypi/webui.py	(original)
+++ trunk/pypi/webui.py	Fri Jul 23 18:15:15 2010
@@ -2478,7 +2478,9 @@
             info['admin'] = self.config.adminemail
             self.send_email(info['email'], rego_message%info)
             response = 'Registration OK'
-            message = 'You should receive a confirmation email shortly.'
+            message = ('You should receive a confirmation email to %s shortly. '
+                       'To complete the registration process, visit the link '
+                       'indicated in the email.') % info['email']
 
         else:
             # update details


More information about the Pypi-checkins mailing list