diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-08-26 15:20:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-08-26 15:20:46 (GMT) |
commit | 9e34c047325651853a95f95e538582a4f6d5b7f6 (patch) | |
tree | 97ba789e8889e26e3fd5bd729d01d5e8e2c15d70 /Lib/distutils | |
parent | e8889c5741b636aa798757eb5500d304b1704344 (diff) | |
download | cpython-9e34c047325651853a95f95e538582a4f6d5b7f6.zip cpython-9e34c047325651853a95f95e538582a4f6d5b7f6.tar.gz cpython-9e34c047325651853a95f95e538582a4f6d5b7f6.tar.bz2 |
Whitespace normalization (via reindent.py).
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/dir_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/dir_util.py b/Lib/distutils/dir_util.py index 2248b60..43994db 100644 --- a/Lib/distutils/dir_util.py +++ b/Lib/distutils/dir_util.py @@ -31,7 +31,7 @@ def mkpath (name, mode=0777, verbose=0, dry_run=0): global _path_created # Detect a common bug -- name is None - if not isinstance(name, StringTypes): + if not isinstance(name, StringTypes): raise DistutilsInternalError, \ "mkpath: 'name' must be a string (got %r)" % (name,) |