aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authortarek <none@none>2009-08-28 10:40:12 +0200
committertarek <none@none>2009-08-28 10:40:12 +0200
commitdd606e831affd2ace8bd5a276d3bcc1aa1433c11 (patch)
treead3d902ce0b35d343ad6a694bf8171af3795a948 /setuptools
parent0ae5113b9bc5824a09b0e2c4e317084a4402cc0c (diff)
downloadexternal_python_setuptools-dd606e831affd2ace8bd5a276d3bcc1aa1433c11.tar.gz
external_python_setuptools-dd606e831affd2ace8bd5a276d3bcc1aa1433c11.tar.bz2
external_python_setuptools-dd606e831affd2ace8bd5a276d3bcc1aa1433c11.zip
made zip_ok False by default #33
--HG-- branch : distribute extra : rebase_source : 593924801e8dd947c8e741f9d94e919dd0bdd2dd
Diffstat (limited to 'setuptools')
-rwxr-xr-xsetuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 3f8a6877..0fa07845 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -547,7 +547,7 @@ Please make the appropriate changes for your system and try again.
return True
if not dist.has_metadata('zip-safe'):
return True
- return False
+ return True
def maybe_move(self, spec, dist_filename, setup_base):
dst = os.path.join(self.build_directory, spec.key)