Skip to content

Commit e7f8e3a

Browse files
committed
Fix function name to avoid conflict with the parser name
1 parent 12befad commit e7f8e3a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Platforms/emscripten/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def make_build_python(context, working_dir):
291291

292292

293293
@subdir("native_build_dir")
294-
def pythoninfo_build(context, working_dir):
294+
def pythoninfo_build_python(context, working_dir):
295295
"""Display build info for the build Python."""
296296
call(["make", "pythoninfo"], quiet=context.quiet)
297297

@@ -858,7 +858,7 @@ def main():
858858
"make-dependencies": make_dependencies,
859859
"configure-build-python": configure_build_python,
860860
"make-build-python": make_build_python,
861-
"pythoninfo-build": pythoninfo_build,
861+
"pythoninfo-build": pythoninfo_build_python,
862862
"configure-host": configure_emscripten_python,
863863
"make-host": make_emscripten_python,
864864
"pythoninfo-host": pythoninfo_emscripten_python,

0 commit comments

Comments
 (0)