Print newline after receiving EOF in installutils.read_password.

This commit is contained in:
Jan Cholasta
2013-07-09 10:29:21 +00:00
committed by Martin Kosek
parent ab2debd1ea
commit 693710784b
12 changed files with 15 additions and 14 deletions

View File

@@ -291,7 +291,8 @@ def read_password(user, confirm=True, validate=True, retry=True, validator=_read
correct = True
except EOFError:
return None
print ""
finally:
print ""
return pwd
def update_file(filename, orig, subst):