Configs: Explicitly import env in Benchmarks.py
env was being implicitly imported into Benchmarks.py through SysPaths.py. This change brings it in explicitly in the file where it's used.
This commit is contained in:
parent
ae52ff631f
commit
aa0cd52504
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@
|
|||
#
|
||||
# Authors: Ali Saidi
|
||||
|
||||
from SysPaths import *
|
||||
from SysPaths import script, disk, binary
|
||||
from os import environ as env
|
||||
from m5.defines import buildEnv
|
||||
|
||||
class SysConfig:
|
||||
|
|
Loading…
Reference in a new issue