quick change

This commit is contained in:
Jun-te Kim 2025-04-16 18:24:56 +00:00
parent a4e4014b80
commit c1239ae8f3

View file

@ -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)