diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-01-25 11:46:30 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-02-23 23:34:05 +0000 |
commit | 2bad848b85f3463edca652e0f73cc64c57961fbb (patch) | |
tree | c443197788098e575e94530745dec93267192e80 /src/arch/generic | |
parent | f59e550bc8164a2a8d06bf18099f993c7181367c (diff) | |
download | gem5-2bad848b85f3463edca652e0f73cc64c57961fbb.tar.xz |
python: Enforce absolute imports for Python 3 compatibility
Change-Id: Ia88d7fd472f7aed9b97df81468211384981bf6c6
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/15983
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/arch/generic')
-rw-r--r-- | src/arch/generic/BaseTLB.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/generic/BaseTLB.py b/src/arch/generic/BaseTLB.py index b98b99356..688117a66 100644 --- a/src/arch/generic/BaseTLB.py +++ b/src/arch/generic/BaseTLB.py @@ -29,7 +29,7 @@ # Ivan Pizarro from m5.params import * -from MemObject import MemObject +from m5.objects.MemObject import MemObject class BaseTLB(MemObject): type = 'BaseTLB' |