mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-30 13:10:56 +00:00
quick change
This commit is contained in:
parent
a4e4014b80
commit
c1239ae8f3
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue