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
in Python3, it was replaced by input()
  • Loading branch information
pesekon2 committed Aug 15, 2023
1 parent 5633a4b commit 750f6a9
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 750f6a9

Please sign in to comment.