From: <otm...@us...> - 2009-05-10 08:23:51
|
Revision: 6327 http://jython.svn.sourceforge.net/jython/?rev=6327&view=rev Author: otmarhumbel Date: 2009-05-10 08:23:48 +0000 (Sun, 10 May 2009) Log Message: ----------- small cleanup Modified Paths: -------------- trunk/jython/registry trunk/jython/src/org/python/core/PySystemState.java Modified: trunk/jython/registry =================================================================== --- trunk/jython/registry 2009-05-10 06:43:49 UTC (rev 6326) +++ trunk/jython/registry 2009-05-10 08:23:48 UTC (rev 6327) @@ -31,7 +31,7 @@ #python.verbose = message # Jython ships with a JLine console (http://jline.sourceforge.net/) -# out of the box. Setting this to the name of different console class, +# out of the box. Setting this to the name of a different console class, # new console features can be enabled. Readline support is such an # example: #python.console=org.python.util.ReadlineConsole Modified: trunk/jython/src/org/python/core/PySystemState.java =================================================================== --- trunk/jython/src/org/python/core/PySystemState.java 2009-05-10 06:43:49 UTC (rev 6326) +++ trunk/jython/src/org/python/core/PySystemState.java 2009-05-10 08:23:48 UTC (rev 6327) @@ -217,7 +217,7 @@ } private void initEncoding() { - String encoding = registry.getProperty("python.console.encoding"); + String encoding = registry.getProperty(PYTHON_CONSOLE_ENCODING); if (encoding == null) { return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |