[Python-checkins] cpython (2.7): Corrected typo in comment.

vinay.sajip python-checkins at python.org
Tue Oct 25 12:11:25 CEST 2011


http://hg.python.org/cpython/rev/a7191ec811c6
changeset:   73125:a7191ec811c6
branch:      2.7
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Tue Oct 25 11:10:54 2011 +0100
summary:
  Corrected typo in comment.

files:
  Lib/logging/__init__.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -480,7 +480,7 @@
                 # to errors when s is Unicode and record.exc_text is str
                 # See issue 8924.
                 # We also use replace for when there are multiple
-                # encodings, e.g. UTF-898 for the filesystem and latin-1
+                # encodings, e.g. UTF-8 for the filesystem and latin-1
                 # for a script. See issue 13232.
                 s = s + record.exc_text.decode(sys.getfilesystemencoding(),
                                                'replace')

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list