diff options
-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: |