diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-07 16:13:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-07 16:13:10 (GMT) |
commit | 7e610bcdf128f61b925654e4fa80fbac83537d0e (patch) | |
tree | 2caff03d0290100e349a82b983191f7544dcc063 | |
parent | 886483e2b9bbabf60ab769683269b873381dd5ee (diff) | |
download | cpython-7e610bcdf128f61b925654e4fa80fbac83537d0e.zip cpython-7e610bcdf128f61b925654e4fa80fbac83537d0e.tar.gz cpython-7e610bcdf128f61b925654e4fa80fbac83537d0e.tar.bz2 |
bpo-34605: childs => children (GH-9102)
-rw-r--r-- | Lib/distutils/command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 41bf4bb..a1d1a1e 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -223,7 +223,7 @@ class install(Command): def finalize_options(self): """Finalizes options.""" - # This method (and its pliant childs, like 'finalize_unix()', + # This method (and its pliant children, like 'finalize_unix()', # 'finalize_other()', and 'select_scheme()') is where the default # installation directories for modules, extension modules, and # anything else we care to install from a Python module |