projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b49c9b
)
Fix indentation bug.
author
Greg Ward
<gward@python.net>
Mon, 17 Jan 2000 21:58:07 +0000
(21:58 +0000)
committer
Greg Ward
<gward@python.net>
Mon, 17 Jan 2000 21:58:07 +0000
(21:58 +0000)
Lib/distutils/command/dist.py
patch
|
blob
|
history
diff --git
a/Lib/distutils/command/dist.py
b/Lib/distutils/command/dist.py
index 2d05f17447fa44a6f1af20e59c9cbbce527d65aa..0f9e30bad8eb8f3a32bbf360b32440cfbd8487a8 100644
(file)
--- 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: