From fc86f75eb6001caf2dd11f566c06d1664330d9f9 Mon Sep 17 00:00:00 2001 From: LeonKohli <98176333+LeonKohli@users.noreply.github.com> Date: Thu, 22 Feb 2024 08:52:54 +0100 Subject: [PATCH] fix: removed blank --- azubiheftApi/azubiheftApi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azubiheftApi/azubiheftApi.py b/azubiheftApi/azubiheftApi.py index 89dd795..605865f 100644 --- a/azubiheftApi/azubiheftApi.py +++ b/azubiheftApi/azubiheftApi.py @@ -267,7 +267,7 @@ def writeReports(self, entries: List[Entry]) -> None: for entry in entries: date_str = TimeHelper.dateTimeToString(entry.date) week_number = self.getReportWeekId(entry.date) - url = f"https: //www.azubiheft.de/Azubi/XMLHttpRequest.ashx?Datum={date_str}&BrNr={ + url = f"https://www.azubiheft.de/Azubi/XMLHttpRequest.ashx?Datum={date_str}&BrNr={ week_number}&BrSt=1&BrVorh=Yes&T={TimeHelper.getActualTimestamp()}" # Convert line breaks in the message to
tags for HTML formatting