[bug]gcode write_parsing_response_buffer

fix call to function
This commit is contained in:
thelastWallE 2021-05-25 13:20:27 +02:00 committed by GitHub
parent 55e81655f4
commit 107e2e1693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ class KlipperPlugin(
elif "// probe" in line or "// Failed to verify BLTouch" in line:
msg = line.strip('/')
self.log_info(msg)
write_parsing_response_buffer()
self.write_parsing_response_buffer()
elif "//" in line:
# add lines with // to a buffer
self._message = self._message + line.strip('/')