diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:13:22 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 13:13:22 (GMT) |
commit | e0c69161bc9d4e9deca4fc0add189b4df9cce8cb (patch) | |
tree | 577f43f5da23af8cd3f34422599627cef6a2902f /Lib/distutils/command | |
parent | 1d8e7dbf1ab5f206016de6ccd9ce3962d264bd9b (diff) | |
parent | b5bc353b8893461b0ecdf0e4bc2b299ef2b19bc0 (diff) | |
download | cpython-e0c69161bc9d4e9deca4fc0add189b4df9cce8cb.zip cpython-e0c69161bc9d4e9deca4fc0add189b4df9cce8cb.tar.gz cpython-e0c69161bc9d4e9deca4fc0add189b4df9cce8cb.tar.bz2 |
#18741: merge with 3.3.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/install.py | 2 | ||||
-rw-r--r-- | Lib/distutils/command/sdist.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index cfc5d5e..456511c 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -530,7 +530,7 @@ class install(Command): self.extra_dirs = extra_dirs def change_roots(self, *names): - """Change the install direcories pointed by name using root.""" + """Change the install directories pointed by name using root.""" for name in names: attr = "install_" + name setattr(self, attr, change_root(self.root, getattr(self, attr))) diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index a9429a4..116f67e 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -175,7 +175,7 @@ class sdist(Command): depends on the user's options. """ # new behavior when using a template: - # the file list is recalculated everytime because + # the file list is recalculated every time because # even if MANIFEST.in or setup.py are not changed # the user might have added some files in the tree that # need to be included. |