We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50cc1f commit 49f4433Copy full SHA for 49f4433
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/locale/PythonLocale.java
@@ -138,7 +138,7 @@ public static PythonLocale initializeFromTruffleEnv(Env env) {
138
139
Locale displayLocale = LocaleUtils.fromPosix(defaultLangOption, null);
140
if (displayLocale == null) {
141
- LOGGER.warning(() -> "Could not parse the value of --python.DefaultLocale='" + defaultLangOption + '\'');
+ LOGGER.warning(() -> "Could not parse the value of --python.InitialLocale='" + defaultLangOption + '\'');
142
return fromJavaDefault();
143
} else {
144
LOGGER.fine(() -> "Selected locale: " + displayLocale);
0 commit comments