diff --git a/etl/dimitra_hubspot_notes_gather.py b/etl/dimitra_hubspot_notes_gather.py index eb5eaeb..0260661 100644 --- a/etl/dimitra_hubspot_notes_gather.py +++ b/etl/dimitra_hubspot_notes_gather.py @@ -106,10 +106,10 @@ days_ahead = (7 - today.weekday()) % 7 days_ahead = 7 if days_ahead == 0 else days_ahead # If today is Monday, get *next* Monday next_monday = today + timedelta(days=days_ahead) -formatted = next_monday.strftime("Monday %d-%m-%Y") +formatted = next_monday.strftime("%d-%m-%Y Monday") -file_name = f"DEAL_NOTES_FROM_HUBSPOT {formatted}.xlsx" +file_name = f"{formatted} DEAL_NOTES_FROM_HUBSPOT.xlsx" wb.save(file_name) output_path = os.path.abspath(file_name) sharepoint_client = SharePointScraper(SharePointInstaller.DOMNA)