diff options
| author | Louis Burda <quent.burda@gmail.com> | 2021-05-31 20:37:51 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2021-05-31 20:37:51 +0200 |
| commit | ced5bcb273a17a31058dd58ab413f7c83cfe4508 (patch) | |
| tree | 432fc374c6d035c0d3bae33df419f28bbce1c9af | |
| parent | e346b4eb971b273cbb088200d1eee41448a1bb08 (diff) | |
| download | enowars5-service-stldoctor-ced5bcb273a17a31058dd58ab413f7c83cfe4508.tar.gz enowars5-service-stldoctor-ced5bcb273a17a31058dd58ab413f7c83cfe4508.zip | |
fixed do_auth receiving ID
| -rw-r--r-- | checker/src/checker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checker/src/checker.py b/checker/src/checker.py index 2cf53a7..b619c5f 100644 --- a/checker/src/checker.py +++ b/checker/src/checker.py @@ -153,8 +153,8 @@ class STLDoctorChecker(BaseChecker): # Parse ID self.debug(conn.recvline()) - line = conn.recvuntil("with ID ") - self.debug(conn.recvline()) + line = conn.recvline() + self.debug(line) modelid = line.rsplit(b"!", 1)[0].split(b"with ID ", 1)[1] if modelid == "": raise BrokenServiceException("Unable to upload file!") |
