From e2eec5794e9e1acc7c63f38e15228ee7564549fb Mon Sep 17 00:00:00 2001 From: paulmart-n Date: Mon, 15 Apr 2024 10:13:10 +0200 Subject: [PATCH] Fix "nicht bestanden" - Format --- fetchDUALIS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetchDUALIS.py b/fetchDUALIS.py index 46c7069..930060b 100644 --- a/fetchDUALIS.py +++ b/fetchDUALIS.py @@ -158,7 +158,7 @@ async def getPruefung(s, url): col = [e.text.strip() for e in cols] if len(col) == 6 and len(col[3]) <= 13: if len(col[3]) != 0: - ret += [col[0] + ": " + col[3]] + ret += [col[0] + ": " + col[3].split("\xa0")[0]] if ret[-1][0] == ':': ret[-1] = "Gesamt" + ret[-1] if len(ret) == 0: