Skip to content

Commit 11ec26f

Browse files
committed
[GR-51531] Fix accesses to indirect mx imports
PullRequest: graalpython/3179
2 parents 9f2f702 + 86c554f commit 11ec26f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
from zipfile import ZipFile
5656

5757
import mx
58+
import mx_util
5859
import mx_benchmark
5960
import mx_gate
6061
import mx_native
@@ -3076,7 +3077,7 @@ def run(self, args, env=None, cwd=None, **kwargs):
30763077
"-B",
30773078
"-S"
30783079
]
3079-
mx.ensure_dir_exists(cwd)
3080+
mx_util.ensure_dir_exists(cwd)
30803081

30813082
env = env.copy() if env else os.environ.copy()
30823083
env.update(self.subject.getBuildEnv())

0 commit comments

Comments
 (0)