[Python-3000-checkins] r62190 - python/branches/py3k/Modules/main.c

martin.v.loewis python-3000-checkins at python.org
Sun Apr 6 19:57:16 CEST 2008


Author: martin.v.loewis
Date: Sun Apr  6 19:57:16 2008
New Revision: 62190

Modified:
   python/branches/py3k/Modules/main.c
Log:
Convert another %s to %ls.


Modified: python/branches/py3k/Modules/main.c
==============================================================================
--- python/branches/py3k/Modules/main.c	(original)
+++ python/branches/py3k/Modules/main.c	Sun Apr  6 19:57:16 2008
@@ -539,7 +539,7 @@
 
 		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;


More information about the Python-3000-checkins mailing list