From: Ed Bartosh <[email protected]> Removed unneeded code as it causes the following error in Python 3: TypeError: expected bytes, bytearray or buffer compatible object
Signed-off-by: Ed Bartosh <[email protected]> --- bitbake/lib/toaster/toastergui/tests.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bitbake/lib/toaster/toastergui/tests.py b/bitbake/lib/toaster/toastergui/tests.py index 31f1431..2cd2c7d 100644 --- a/bitbake/lib/toaster/toastergui/tests.py +++ b/bitbake/lib/toaster/toastergui/tests.py @@ -382,12 +382,6 @@ class ViewTests(TestCase): else: ret = BeautifulSoup(td).text - # We change the td into ascii as a way to remove characters - # such as \xa0 (non break space) which mess with the ordering - # comparisons - ret.strip().encode('ascii', - errors='replace').replace('?', ' ') - # Case where the td is empty if len(ret): return "0" else: -- 1.9.3 --------------------------------------------------------------------- Intel Corporation (UK) Limited Registered No. 1134945 (England) Registered Office: Pipers Way, Swindon SN3 1RJ VAT No: 860 2173 47 This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
