Skip to content

Commit

Permalink
Fixes date parsing issue by setting date format (#1100)
Browse files Browse the repository at this point in the history
  • Loading branch information
udgover authored Jul 3, 2024
1 parent 012b1b4 commit aab28b5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/feeds/public/viriback_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ def run(self):
if response:
data = response.text
df = pd.read_csv(
StringIO(data),
parse_dates=["FirstSeen"],
StringIO(data), parse_dates=["FirstSeen"], date_format="%d-%m-%Y"
)
df.ffill(inplace=True)
df = self._filter_observables_by_time(df, "FirstSeen")
Expand Down

0 comments on commit aab28b5

Please sign in to comment.