[rhmessaging-commits] rhmessaging commits: r2690 - mgmt/trunk/cumin/python/cumin.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Fri Oct 24 15:06:46 EDT 2008


Author: justi9
Date: 2008-10-24 15:06:46 -0400 (Fri, 24 Oct 2008)
New Revision: 2690

Modified:
   mgmt/trunk/cumin/python/cumin/tools.py
Log:
Make it clear the user is entering a new password, not an existing one

Modified: mgmt/trunk/cumin/python/cumin/tools.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/tools.py	2008-10-24 15:44:05 UTC (rev 2689)
+++ mgmt/trunk/cumin/python/cumin/tools.py	2008-10-24 19:06:46 UTC (rev 2690)
@@ -15,8 +15,8 @@
     password = None
 
     while password is None:
-        once = getpass("Type password: ")
-        twice = getpass("Retype password: ")
+        once = getpass("Enter new password: ")
+        twice = getpass("Confirm new password: ")
         
         if once == twice:
             password = once




More information about the rhmessaging-commits mailing list