From 394ff534ed95cd4392cde983e1d3e63397762561 Mon Sep 17 00:00:00 2001 From: oepen Date: Mon, 25 Jul 2011 14:52:23 +0000 Subject: [PATCH] Fixed typo git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@430 96b47cad-a561-4643-ad3b-153ac7d7599c --- .../src/vpicc/virtualsmartcard/CardGenerator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/virtualsmartcard/src/vpicc/virtualsmartcard/CardGenerator.py b/virtualsmartcard/src/vpicc/virtualsmartcard/CardGenerator.py index 9953e64..153e777 100644 --- a/virtualsmartcard/src/vpicc/virtualsmartcard/CardGenerator.py +++ b/virtualsmartcard/src/vpicc/virtualsmartcard/CardGenerator.py @@ -154,7 +154,7 @@ class CardGenerator(object): print "Failed to open " + filename if password is None: - password = getpass.getpass("Please enter your password.") + password = getpass.getpass("Please enter your password:") serializedMF = read_protected_string(db["mf"], password) serializedSAM = read_protected_string(db["sam"], password) @@ -166,8 +166,8 @@ class CardGenerator(object): from virtualsmartcard.CryptoUtils import protect_string if password is None: - passwd1 = getpass.getpass("Please enter a password.") - passwd2 = getpass.getpass("Please retype your password.") + passwd1 = getpass.getpass("Please enter your password:") + passwd2 = getpass.getpass("Please retype your password:") if (passwd1 != passwd2): raise ValueError, "Passwords did not match. Will now exit" else: