Skip to content

Commit

Permalink
i.landsat.download: remove a call of non-existent function raw_input() (
Browse files Browse the repository at this point in the history
OSGeo#937)

in Python3, it was replaced by input()
  • Loading branch information
pesekon2 authored and Corey White committed Sep 19, 2023
1 parent 47aa66d commit 6b89698
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def main():
# stdin
import getpass

user = raw_input(_("Insert username: "))
user = input(_("Insert username: "))
password = getpass.getpass(_("Insert password: "))

else:
Expand Down

0 comments on commit 6b89698

Please sign in to comment.