Skip to content

Commit

Permalink
Fix zimit monthly report
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit74 committed Mar 3, 2025
1 parent 9c9080e commit e213ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dispatcher/backend/maint-scripts/monthly_report_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@


def main():
"""Creates recipes for TED by topics"""

now = datetime.datetime.now(datetime.UTC)
start_of_this_month = now.replace(day=1, hour=0, minute=0, second=0, microsecond=0)
Expand Down Expand Up @@ -73,7 +72,8 @@ def main():
csvwriter.writerow(
[
task["_id"],
task["config"]["flags"]["url"],
task["config"]["flags"].get("url")
or task["config"]["flags"]["seeds"],
task["status"],
task["timestamp"]["requested"],
task["timestamp"].get("started", "-"),
Expand Down

0 comments on commit e213ad3

Please sign in to comment.