First round of Python 3 compatibility fixes.

This commit is contained in:
Murtuza Zabuawala
2015-11-06 10:23:19 +00:00
committed by Dave Page
parent da6043e7a5
commit 209ee78b25
11 changed files with 41 additions and 43 deletions

View File

@@ -47,7 +47,7 @@ Enter the email address and password to use for the initial pgAdmin user \
account:\n""")
email = ''
while email == '':
email = raw_input("Email address: ")
email = input("Email address: ")
def pprompt():
return getpass.getpass(), getpass.getpass('Retype password:')