Skip to content

Commit

Permalink
Missing underscore
Browse files Browse the repository at this point in the history
Fix missing underscore in catbox downloader.
  • Loading branch information
OMEGARAZER committed May 25, 2023
1 parent d19e7e9 commit a4a819c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bdfrx/site_downloaders/catbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, post: Submission) -> None:
super().__init__(post)

def find_resources(self, authenticator: Optional[SiteAuthenticator] = None) -> list[Resource]:
links = self.get_links(self.post.url)
links = self._get_links(self.post.url)
if not links:
raise SiteDownloaderError("Catbox parser could not find any links")
links = [Resource(self.post, link, Resource.retry_download(link)) for link in links]
Expand Down

0 comments on commit a4a819c

Please sign in to comment.