From 729ff0a4c7ab8870326232cfb4cc5ef5533b06fd Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 23 May 2021 10:44:59 +0200 Subject: [PATCH] Fix simple authenticator output --- PFERD/authenticators/simple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PFERD/authenticators/simple.py b/PFERD/authenticators/simple.py index caa0002..bcbe69c 100644 --- a/PFERD/authenticators/simple.py +++ b/PFERD/authenticators/simple.py @@ -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: ")