1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-07-27 07:27:04 +00:00

gem5/gem5-aarch64-native: fix fuzz in patch

Not sure how this wasn't caught by the CI, human error no doubt.

Signed-off-by: Ross Burton <ross.burton@arm.com>
This commit is contained in:
Ross Burton
2021-11-08 18:46:10 +00:00
parent 2ef815bb71
commit 80ed458cac
@@ -23,13 +23,13 @@ diff --git a/src/python/m5/debug.py b/src/python/m5/debug.py
index d808850cc..787a39ece 100644 index d808850cc..787a39ece 100644
--- a/src/python/m5/debug.py --- a/src/python/m5/debug.py
+++ b/src/python/m5/debug.py +++ b/src/python/m5/debug.py
@@ -24,7 +24,7 @@ @@ -26,7 +26,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. from __future__ import print_function
-from collections import Mapping -from collections import Mapping
+from collections.abc import Mapping +from collections.abc import Mapping
import _m5.debug import _m5.debug
from _m5.debug import SimpleFlag, CompoundFlag from _m5.debug import SimpleFlag, CompoundFlag
-- --