From: Éric Araujo Date: Wed, 2 Nov 2011 23:13:05 +0000 (+0100) Subject: Fix typo “seperate” X-Git-Tag: v3.3.0a1~967^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ad81a359101bff7bbfe9d126534bc8c9cfd606d;p=python Fix typo “seperate” --- diff --git a/Lib/packaging/command/build.py b/Lib/packaging/command/build.py index 6580fd1286..2e5eb8b52f 100644 --- a/Lib/packaging/command/build.py +++ b/Lib/packaging/command/build.py @@ -41,7 +41,7 @@ class build(Command): ('use-2to3', None, "use 2to3 to make source python 3.x compatible"), ('convert-2to3-doctests', None, - "use 2to3 to convert doctests in seperate text files"), + "use 2to3 to convert doctests in separate text files"), ('use-2to3-fixers', None, "list additional fixers opted for during 2to3 conversion"), ] diff --git a/Lib/packaging/command/build_py.py b/Lib/packaging/command/build_py.py index e5b10b0048..02482134d0 100644 --- a/Lib/packaging/command/build_py.py +++ b/Lib/packaging/command/build_py.py @@ -29,7 +29,7 @@ class build_py(Command, Mixin2to3): ('use-2to3', None, "use 2to3 to make source python 3.x compatible"), ('convert-2to3-doctests', None, - "use 2to3 to convert doctests in seperate text files"), + "use 2to3 to convert doctests in separate text files"), ('use-2to3-fixers', None, "list additional fixers opted for during 2to3 conversion"), ] diff --git a/Lib/packaging/dist.py b/Lib/packaging/dist.py index 4027d2387c..49ad4c5cc1 100644 --- a/Lib/packaging/dist.py +++ b/Lib/packaging/dist.py @@ -69,7 +69,7 @@ Common commands: (see '--help-commands' for more) ('use-2to3', None, "use 2to3 to make source python 3.x compatible"), ('convert-2to3-doctests', None, - "use 2to3 to convert doctests in seperate text files"), + "use 2to3 to convert doctests in separate text files"), ] display_option_names = [x[0].replace('-', '_') for x in display_options]