From b71194022b80f6f9d216d60c8fa7259baf5a53ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20S=C3=A1nchez?= Date: Thu, 30 Jan 2025 11:59:35 +0000 Subject: [PATCH] Fix method name --- blackboard_sync/content/webdav.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blackboard_sync/content/webdav.py b/blackboard_sync/content/webdav.py index 6a7a71c..342f578 100644 --- a/blackboard_sync/content/webdav.py +++ b/blackboard_sync/content/webdav.py @@ -64,7 +64,7 @@ def _find_replace(self, soup: BeautifulSoup, if uri: # Parse JSON dataset - filename = _parse_bbfile(el) if is_link else None + filename = self._parse_bbfile(el) if is_link else None # Handle url-encoding filename = filename or unquote(uri.split('/')[-1]) links.append(Link(href=uri, text=filename))