diff options
author | Greg Ward <gward@python.net> | 2000-01-17 21:58:07 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-01-17 21:58:07 (GMT) |
commit | 9f200cbaa607675014d0aa297b11d13f5c4709a7 (patch) | |
tree | 0fc8376a3773e371cc2c50e2b631d52b6eb7cab8 | |
parent | 3b49c9babd61338ac050d1c7c3e4e6909eaa46d9 (diff) | |
download | cpython-9f200cbaa607675014d0aa297b11d13f5c4709a7.zip cpython-9f200cbaa607675014d0aa297b11d13f5c4709a7.tar.gz cpython-9f200cbaa607675014d0aa297b11d13f5c4709a7.tar.bz2 |
Fix indentation bug.
-rw-r--r-- | Lib/distutils/command/dist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/dist.py b/Lib/distutils/command/dist.py index 2d05f17..0f9e30b 100644 --- a/Lib/distutils/command/dist.py +++ b/Lib/distutils/command/dist.py @@ -472,8 +472,8 @@ class Dist (Command): "could neither find a standalone zip utility nor " + "import the 'zipfile' module") % base_dir - z = zipfile.ZipFile (base_dir + ".zip", "wb", - compression=zipfile.ZIP_DEFLATED) + z = zipfile.ZipFile (base_dir + ".zip", "wb", + compression=zipfile.ZIP_DEFLATED) def visit (z, dirname, names): for name in names: |