From 0a7bd539fac4458152eade25cf920793e68f9a8c Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Fri, 10 Jun 2016 11:45:48 +0100 Subject: bitbake: toaster: toastergui tests Use new BeautifulSoup syntax Fix deprecation warning specify the parser used for creating the BeautifulSoup object. (Bitbake rev: d34546e88881e89588206877ebaea506cda4f6c2) Signed-off-by: Michael Wood Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') diff --git a/bitbake/lib/toaster/toastergui/tests.py b/bitbake/lib/toaster/toastergui/tests.py index 2cd2c7d163..da530a10e5 100644 --- a/bitbake/lib/toaster/toastergui/tests.py +++ b/bitbake/lib/toaster/toastergui/tests.py @@ -380,7 +380,7 @@ class ViewTests(TestCase): if "<" not in td: ret = td else: - ret = BeautifulSoup(td).text + ret = BeautifulSoup(td, "html.parser").text if len(ret): return "0" -- cgit 1.2.3-korg