]> granicus.if.org Git - python/commitdiff
Fix indentation bug.
authorGreg Ward <gward@python.net>
Mon, 17 Jan 2000 21:58:07 +0000 (21:58 +0000)
committerGreg Ward <gward@python.net>
Mon, 17 Jan 2000 21:58:07 +0000 (21:58 +0000)
Lib/distutils/command/dist.py

index 2d05f17447fa44a6f1af20e59c9cbbce527d65aa..0f9e30bad8eb8f3a32bbf360b32440cfbd8487a8 100644 (file)
@@ -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: