Skip to content

Commit

Permalink
Changes to make timeliner support date-less log formats log2timeline#…
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Mar 30, 2024
1 parent 061650d commit 651055f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plaso/engine/timeliner.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,7 @@ def _GetEvent(
base_date = self._GetBaseDate(storage_writer, event_data)

try:
# TODO: change dfDateTime to support NewFromDeltaAndDate.
date_time = date_time.NewFromDeltaAndYear(base_date[0])
date_time = date_time.NewFromDeltaAndDate(*base_date)
except ValueError as exception:
self._ProduceTimeliningWarning(
storage_writer, event_data, str(exception))
Expand Down

0 comments on commit 651055f

Please sign in to comment.