Skip to content

Commit ca7a033

Browse files
committed
Fix comment
1 parent a9f937f commit ca7a033

File tree

1 file changed

+1
-1
lines changed
  • dissect/target/plugins/os/windows/log

1 file changed

+1
-1
lines changed

dissect/target/plugins/os/windows/log/mssql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def errorlog(self) -> Iterator[MssqlErrorlogRecord]:
8383
for line in fh:
8484
# If we have a buffer with a timestamp and
8585
# our current line also has a timestamp,
86-
# we should have a record to be yielded.
86+
# we should have a complete record in our buffer.
8787
if previous_ts := RE_TIMESTAMP_PATTERN.match(buf):
8888
if current_ts := RE_TIMESTAMP_PATTERN.match(line):
8989
yield MssqlErrorlogRecord(

0 commit comments

Comments
 (0)