diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-31 19:00:47 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-31 19:00:47 (GMT) |
commit | 1be2e82c57fad3bf8e04cb3e06212752de71ea70 (patch) | |
tree | dcaea853d020335e33b887a095e82d5fb96bf97b /Lib/distutils | |
parent | b4efbe8a5890ce1405ce3229356614a6f5b3208e (diff) | |
download | cpython-1be2e82c57fad3bf8e04cb3e06212752de71ea70.zip cpython-1be2e82c57fad3bf8e04cb3e06212752de71ea70.tar.gz cpython-1be2e82c57fad3bf8e04cb3e06212752de71ea70.tar.bz2 |
Correct indent
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_dir_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_dir_util.py b/Lib/distutils/tests/test_dir_util.py index 7e84721..6181ec6 100644 --- a/Lib/distutils/tests/test_dir_util.py +++ b/Lib/distutils/tests/test_dir_util.py @@ -51,7 +51,7 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase): self.assertEqual(self._logs, wanted) @unittest.skipIf(sys.platform.startswith('win'), - "This test is only appropriate for POSIX-like systems.") + "This test is only appropriate for POSIX-like systems.") def test_mkpath_with_custom_mode(self): # Get and set the current umask value for testing mode bits. umask = os.umask(0o002) |