diff --git a/etl/dimitra_hubspot_notes_gather.py b/etl/dimitra_hubspot_notes_gather.py index 6d1dcc7..2d92e4a 100644 --- a/etl/dimitra_hubspot_notes_gather.py +++ b/etl/dimitra_hubspot_notes_gather.py @@ -157,8 +157,7 @@ for pipeline, deals in notes_data.items(): # Generate file name with next Monday’s date -monday = previous_monday() -formatted = monday.strftime("%d-%m-%Y Monday") +formatted = previous_monday() file_name = f"{formatted} DEAL_NOTES_FROM_HUBSPOT.xlsx" output_path = os.path.abspath(file_name) wb.save(output_path)