mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-03 15:38:59 +00:00
Update print and input syntax for python 3
This commit is contained in:
@ -30,9 +30,9 @@ if __name__ == "__main__":
|
||||
sys.exit(1)
|
||||
|
||||
if not options.key:
|
||||
options.key = raw_input("Enter key (BASE64 encoded): ")
|
||||
options.key = input("Enter key (BASE64 encoded): ")
|
||||
if not options.user:
|
||||
options.user = raw_input("Enter username: ")
|
||||
options.user = input("Enter username: ")
|
||||
if not options.first:
|
||||
options.first = "FirstName"
|
||||
if not options.last:
|
||||
|
Reference in New Issue
Block a user