]> granicus.if.org Git - python/commitdiff
Issue #19504: Used American spelling for 'customize'.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Fri, 15 Nov 2013 20:54:15 +0000 (20:54 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Fri, 15 Nov 2013 20:54:15 +0000 (20:54 +0000)
Doc/library/logging.rst

index 9045acf23d8dea8daeda90ef539c40b8ac970aec..f3fda14f7fc353201035c32ef7f536ea498d6146 100644 (file)
@@ -727,8 +727,8 @@ functions.
 
    Return either the standard :class:`Logger` class, or the last class passed to
    :func:`setLoggerClass`. This function may be called from within a new class
-   definition, to ensure that installing a customised :class:`Logger` class will
-   not undo customisations already applied by other code. For example::
+   definition, to ensure that installing a customized :class:`Logger` class will
+   not undo customizations already applied by other code. For example::
 
       class MyLogger(logging.getLoggerClass()):
           # ... override behaviour here