From 8d0164aa42ced1ef45d97e4048c153fa48ddedc2 Mon Sep 17 00:00:00 2001 From: Boyan Date: Mon, 2 Dec 2024 18:27:48 +0100 Subject: [PATCH] Fixed problematic line --- temmies/group.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/temmies/group.py b/temmies/group.py index e32fe5e..45f5b04 100644 --- a/temmies/group.py +++ b/temmies/group.py @@ -36,8 +36,7 @@ class Group: # Fetch the page and parse it response = self.session.get(group_url) if response.status_code != 200: - raise ConnectionError(f"Failed to retrieve page for '{ - self.title}'. Tried {group_url}") + raise ConnectionError(f"Failed to retrieve page for '{self.title}'.") self._raw = BeautifulSoup(response.text, "lxml") def get_items(self) -> list: