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