summaryrefslogtreecommitdiff
path: root/Mac/PythonLauncher
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2013-07-06 13:20:57 +0200
committerRonald Oussoren <ronaldoussoren@mac.com>2013-07-06 13:20:57 +0200
commitfd1c69e2a497f685374caa1133c47fa51e8030e5 (patch)
treebe34ea61e3ff885218698ce92a2c465e172a9fb9 /Mac/PythonLauncher
parentd9e7c86d7e0593c13155c1b6c47c4e64fdbc39ac (diff)
downloadcpython-git-fd1c69e2a497f685374caa1133c47fa51e8030e5.tar.gz
Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters.
Diffstat (limited to 'Mac/PythonLauncher')
-rwxr-xr-xMac/PythonLauncher/MyDocument.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/PythonLauncher/MyDocument.m b/Mac/PythonLauncher/MyDocument.m
index 86112c4b15..8f851e74e3 100755
--- a/Mac/PythonLauncher/MyDocument.m
+++ b/Mac/PythonLauncher/MyDocument.m
@@ -76,7 +76,7 @@
const char *cmdline;
int sts;
- cmdline = [[settings commandLineForScript: script] cString];
+ cmdline = [[settings commandLineForScript: script] UTF8String];
if ([settings with_terminal]) {
sts = doscript(cmdline);
} else {