diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-03 10:39:35 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-03 10:39:35 -0400 |
| commit | a364cec540ad813754ea8dcd55d62041e127a324 (patch) | |
| tree | 7517d5c239252a689a7aa00e8349cfb8ede5c111 /setuptools/command | |
| parent | 9b413fd4f689b1c7a24b32b1d2a44a3a5c6ba3c7 (diff) | |
| download | python-setuptools-bitbucket-a364cec540ad813754ea8dcd55d62041e127a324.tar.gz | |
Distributions are once again installed as zipped eggs by default.
Diffstat (limited to 'setuptools/command')
| -rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 8d44817f..4ca0526d 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -704,7 +704,7 @@ Please make the appropriate changes for your system and try again. return True if not dist.has_metadata('zip-safe'): return True - return True + return False def maybe_move(self, spec, dist_filename, setup_base): dst = os.path.join(self.build_directory, spec.key) |
