Remove non-ascii char from emsdk.py. NFC (#1014)

This was introduced by mistake in #996 and causes Emsdk.test_no_32bit to fail.
diff --git a/emsdk.py b/emsdk.py
index fe0c11a..798da24 100644
--- a/emsdk.py
+++ b/emsdk.py
@@ -1034,7 +1034,7 @@
 
     cmdline = ['cmake'] + generator + ['-DCMAKE_BUILD_TYPE=' + build_type, '-DPYTHON_EXECUTABLE=' + sys.executable]
     # Target macOS 10.14 at minimum, to support widest range of Mac devices from "Early 2008" and newer:
-    # https://en.wikipedia.org/wiki/MacBook_(2006–2012)#Supported_operating_systems
+    # https://en.wikipedia.org/wiki/MacBook_(2006-2012)#Supported_operating_systems
     cmdline += ['-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14']
     cmdline += extra_cmake_args + [src_root]