Skip to content

Commit a6c1b64

Browse files
author
karel26
committed
BUGFIX:
- LogAnalyser missing file.tell()
1 parent 3521652 commit a6c1b64

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

extensions/loganalyser/extension.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ async def check_log(self):
115115
asyncio.create_task(callback(self.log_pos + idx, line, match))
116116
else:
117117
self.loop.run_in_executor(None, callback, self.log_pos + idx, line, match)
118+
self.log_pos = await file.tell()
118119
except FileNotFoundError:
119120
pass
120121
finally:

0 commit comments

Comments
 (0)