Print <META> string before user input

This commit is contained in:
Aleksey Ryndin 2024-01-04 18:58:54 +03:00
parent 4b06b23e2a
commit 6d489e6ab3
1 changed files with 2 additions and 2 deletions

View File

@ -414,9 +414,9 @@ you'll be able to transparently follow links to Gopherspace!""")
# Inputs # Inputs
if status.startswith("1"): if status.startswith("1"):
if status == "11": if status == "11":
user_input = getpass.getpass("> ") user_input = getpass.getpass(meta + "\n> ")
else: else:
user_input = input("> ") user_input = input(meta + "\n> ")
gi = gi.query(user_input) gi = gi.query(user_input)
continue continue