diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-12-18 05:41:55 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-12-18 05:41:55 (GMT) |
commit | fc29c88b5f299f0fad9919dd92628f810b4b4711 (patch) | |
tree | ffb98421a6dcb7414bc943d008674b0e440c57de /Lib/distutils | |
parent | 3e8d9413eb6b5126de3181c30ed3edea399d4934 (diff) | |
parent | 59b0eb524f6b476db0805ba0a83661122a3fa2fe (diff) | |
download | cpython-fc29c88b5f299f0fad9919dd92628f810b4b4711.zip cpython-fc29c88b5f299f0fad9919dd92628f810b4b4711.tar.gz cpython-fc29c88b5f299f0fad9919dd92628f810b4b4711.tar.bz2 |
Issue #28987: Merge doc and comment fixes from 3.6
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_bdist_rpm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_bdist_rpm.py b/Lib/distutils/tests/test_bdist_rpm.py index d7c9feb..6453a02 100644 --- a/Lib/distutils/tests/test_bdist_rpm.py +++ b/Lib/distutils/tests/test_bdist_rpm.py @@ -94,7 +94,7 @@ class BuildRpmTestCase(support.TempdirManager, @unittest.skipIf(find_executable('rpmbuild') is None, 'the rpmbuild command is not found') def test_no_optimize_flag(self): - # let's create a package that brakes bdist_rpm + # let's create a package that breaks bdist_rpm tmp_dir = self.mkdtemp() os.environ['HOME'] = tmp_dir # to confine dir '.rpmdb' creation pkg_dir = os.path.join(tmp_dir, 'foo') |