diff options
Diffstat (limited to 'script/testauthenticator.py')
-rwxr-xr-x | script/testauthenticator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/testauthenticator.py b/script/testauthenticator.py index fa7a1ac..faf4f56 100755 --- a/script/testauthenticator.py +++ b/script/testauthenticator.py @@ -10,7 +10,7 @@ VALID_PW = b"12345" def main(): with os.fdopen(3, "rb", buffering=0) as authfd: - inp = authfd.read(511) + inp = authfd.readall() u, p, *r = inp.split(b"\0") if len(r) > 2: |