From 064a727420df75df7dc339abae5e0dca063cb786 Mon Sep 17 00:00:00 2001 From: Bhargav Suryadevara Date: Sun, 17 Dec 2023 21:33:18 -0800 Subject: [PATCH] Updated private function name --- morpheus/controllers/rss_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morpheus/controllers/rss_controller.py b/morpheus/controllers/rss_controller.py index 149dea97e6..4ea4f9e3b3 100644 --- a/morpheus/controllers/rss_controller.py +++ b/morpheus/controllers/rss_controller.py @@ -234,7 +234,7 @@ def _try_parse_feed(self, url: str) -> "feedparser.FeedParserDict": if feed["bozo"]: try: - feed = self._parse_feed_with_beautiful_soup(feed_input, is_url) + feed = self._try_parse_feed_with_beautiful_soup(feed_input, is_url) except Exception: logger.error("Failed to parse the feed manually: %s", url) raise