diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-12-18 05:41:55 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-12-18 05:41:55 +0000 |
commit | 0dff2fa48e3307d6e20555224f4f6501f1ed4e61 (patch) | |
tree | fb72cc12ba991ce3b8ea4f00b48e62403b8d684c /Lib/distutils | |
parent | eb5d1fd00c17ec5de1eaa949a63b56e959d7021e (diff) | |
parent | 43e5790b489672c71d52acfdcba5325c5ec4b1f8 (diff) | |
download | cpython-0dff2fa48e3307d6e20555224f4f6501f1ed4e61.tar.gz |
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 d7c9feb32f..6453a02b88 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') |