From 2b399a01b529d176c87532bf6dec4ff45257c1ea Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Thu, 16 Sep 2021 22:22:31 +0200 Subject: bitbake: bitbake: enable python warnings at the first opportunity We really do want to see those, as they tend to turn into hard errors eventually, as what happened with collections vs collections.abc in python 3.10. (Bitbake rev: bc43fbb86361a21dc2d5deb910810c5a77fdabe8) Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- bitbake/bin/toaster-eventreplay | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/bin/toaster-eventreplay') diff --git a/bitbake/bin/toaster-eventreplay b/bitbake/bin/toaster-eventreplay index 8fa4ab7116..404b61f516 100755 --- a/bitbake/bin/toaster-eventreplay +++ b/bitbake/bin/toaster-eventreplay @@ -19,6 +19,8 @@ import sys import json import pickle import codecs +import warnings +warnings.simplefilter("default") from collections import namedtuple -- cgit v1.2.3-54-g00ecf