Commit d1284190 authored by Ronald Oussoren's avatar Ronald Oussoren

Issue #12990: The "Python Launcher" on OSX could not launch python scripts...

Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters.
parent bbf9fd04
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
const char *cmdline; const char *cmdline;
int sts; int sts;
cmdline = [[settings commandLineForScript: script] cString]; cmdline = [[settings commandLineForScript: script] UTF8String];
if ([settings with_terminal]) { if ([settings with_terminal]) {
sts = doscript(cmdline); sts = doscript(cmdline);
} else { } else {
......
...@@ -188,6 +188,9 @@ Tools/Demos ...@@ -188,6 +188,9 @@ Tools/Demos
- Issue #15239: Make mkstringprep.py work again on Python 3. - Issue #15239: Make mkstringprep.py work again on Python 3.
- Issue #12990: The "Python Launcher" on OSX could not launch python scripts
that have paths that include wide characters.
Build Build
----- -----
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment