mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-05 04:38:26 +00:00
fix error msg ref to beautifulsoup4 (#3242)
Co-authored-by: Daniel Chalef <daniel.chalef@private.org>
This commit is contained in:
parent
7d3e6389f2
commit
ae528fd06e
@ -24,7 +24,8 @@ class BSHTMLLoader(BaseLoader):
|
|||||||
import bs4 # noqa:F401
|
import bs4 # noqa:F401
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise ValueError(
|
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
|
self.file_path = file_path
|
||||||
|
Loading…
Reference in New Issue
Block a user