Fix simple authenticator output

This commit is contained in:
Joscha 2021-05-23 10:44:59 +02:00
parent 6fe51e258f
commit 729ff0a4c7

View File

@ -37,7 +37,7 @@ class SimpleAuthenticator(Authenticator):
if self._username is None:
self._username = await ainput("Username: ")
else:
print(f"Username: {self.username}")
print(f"Username: {self._username}")
if self._password is None:
self._password = await agetpass("Password: ")