From adb4a25d25ba67cd455cfdb8020d6fa0ff074c5d Mon Sep 17 00:00:00 2001 From: t3xhno Date: Tue, 6 Feb 2024 21:27:55 +0100 Subject: [PATCH] Formatting --- scraper_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper_functions.py b/scraper_functions.py index 026509e..7eb08a6 100644 --- a/scraper_functions.py +++ b/scraper_functions.py @@ -27,7 +27,7 @@ def getDmzTasks(url): for task in tasks: taskIndex = task.select("div")[0].text taskTitle = task.select("div")[1].text - result += taskIndex + " " + taskTitle + "|" + " Link: " + url + task.find("a")["href"][1:] + "\n" + result += taskIndex + " " + taskTitle + " | " + "Link: " + url + task.find("a")["href"][1:] + "\n" return result except Exception as e: return e