diff --git a/scraper_functions.py b/scraper_functions.py index 4236830..d4cbfa6 100644 --- a/scraper_functions.py +++ b/scraper_functions.py @@ -43,7 +43,8 @@ def getDmzTasks(url): usersList = "" for user in assignedUsers: usersList += user.find("div").text.split(": ")[1] + ", " - result += usersList[:-2] + "\n\n" + result += usersList[:-2] + "\n" + result += "\tLink: " + url + task.find("a")["href"][1:] + "\n\n" return result except Exception as e: return e