diff options
author | Éric Araujo <merwok@netwok.org> | 2011-11-02 23:13:05 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-11-02 23:13:05 (GMT) |
commit | 9ad81a359101bff7bbfe9d126534bc8c9cfd606d (patch) | |
tree | e9620f1d1d3d9f554cd67ef68f84b4c6db5f5cec /Lib/packaging | |
parent | 815901108b0f654b74f4eabad818901ceaae9aed (diff) | |
download | cpython-9ad81a359101bff7bbfe9d126534bc8c9cfd606d.zip cpython-9ad81a359101bff7bbfe9d126534bc8c9cfd606d.tar.gz cpython-9ad81a359101bff7bbfe9d126534bc8c9cfd606d.tar.bz2 |
Fix typo “seperate”
Diffstat (limited to 'Lib/packaging')
-rw-r--r-- | Lib/packaging/command/build.py | 2 | ||||
-rw-r--r-- | Lib/packaging/command/build_py.py | 2 | ||||
-rw-r--r-- | Lib/packaging/dist.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/packaging/command/build.py b/Lib/packaging/command/build.py index 6580fd1..2e5eb8b 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 e5b10b0..0248213 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 4027d23..49ad4c5 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] |