Skip to content

Commit

Permalink
fix oci end datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
lcouzens committed Nov 15, 2023
1 parent 6773aa5 commit 9b9d083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nise/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ def oci_create_report(options):

generate_daily_report = options.get("oci_daily_report", False)
start_date = options.get("start_date")
end_date = start_date if generate_daily_report else options.get("end_date")
end_date = start_date.replace(hour=23) if generate_daily_report else options.get("end_date")
static_report_data = options.get("static_report_data")

if static_report_data:
Expand Down

0 comments on commit 9b9d083

Please sign in to comment.