From: Martin v. Löwis Date: Sun, 6 Apr 2008 17:57:16 +0000 (+0000) Subject: Convert another %s to %ls. X-Git-Tag: v3.0a5~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99ddc8c603dd00cb855b7a6f872f529666b3cdbb;p=python Convert another %s to %ls. --- diff --git a/Modules/main.c b/Modules/main.c index 81a3d46d3f..4af2e77a0c 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -539,7 +539,7 @@ Py_Main(int argc, wchar_t **argv) if (sts==-1 && filename!=NULL) { if ((fp = _wfopen(filename, L"r")) == NULL) { - fprintf(stderr, "%s: can't open file '%ls': [Errno %d] %s\n", + fprintf(stderr, "%ls: can't open file '%ls': [Errno %d] %s\n", argv[0], filename, errno, strerror(errno)); return 2;