fix error msg ref to beautifulsoup4 (#3242)

Co-authored-by: Daniel Chalef <daniel.chalef@private.org>
This commit is contained in:
Daniel Chalef
2023-04-20 15:03:32 -06:00
committed by vowelparrot
parent fd948bef64
commit 1a6e8865bf

View File

@@ -24,7 +24,8 @@ class BSHTMLLoader(BaseLoader):
import bs4 # noqa:F401
except ImportError:
raise ValueError(
"bs4 package not found, please install it with " "`pip install bs4`"
"beautifulsoup4 package not found, please install it with "
"`pip install beautifulsoup4`"
)
self.file_path = file_path