From 0429185745b14783f1441c53be878b9b9c5ba353 Mon Sep 17 00:00:00 2001 From: Roman Yurchak Date: Fri, 26 Oct 2018 19:04:32 +0200 Subject: [PATCH] Fix typo --- pyodide_build/pywasmcross.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyodide_build/pywasmcross.py b/pyodide_build/pywasmcross.py index 90fc84ab0..23db1479a 100755 --- a/pyodide_build/pywasmcross.py +++ b/pyodide_build/pywasmcross.py @@ -290,7 +290,7 @@ def install_for_distribution(args): subprocess.check_call(commands) except Exception: print(f'Warning: {" ".join(commands)} failed with distutils, possibly ' - f'due to the use if distutils that does not support the ' + f'due to the use of distutils that does not support the ' f'--old-and-unmanageable argument. Re-trying the install ' f'without this argument.') subprocess.check_call(commands[:-1])