diff options
author | Benoit Pierre <benoit.pierre@gmail.com> | 2018-01-25 08:36:12 +0100 |
---|---|---|
committer | Benoit Pierre <benoit.pierre@gmail.com> | 2018-01-25 08:49:03 +0100 |
commit | 4d38fb9841d25c6bd5779824a16975ed9ab421b2 (patch) | |
tree | 1d7e73fbf9052cfe78105ab2a839b96709665a80 /setuptools/command | |
parent | 618312bec376e5c71b0938a754106973d8889417 (diff) | |
download | external_python_setuptools-4d38fb9841d25c6bd5779824a16975ed9ab421b2.tar.gz external_python_setuptools-4d38fb9841d25c6bd5779824a16975ed9ab421b2.tar.bz2 external_python_setuptools-4d38fb9841d25c6bd5779824a16975ed9ab421b2.zip |
Fix dry-run handling
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 b7396b85..a6f61436 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -828,7 +828,7 @@ class easy_install(Command): target = os.path.join(self.script_dir, script_name) self.add_output(target) - if not self.dry_run: + if self.dry_run: return mask = current_umask() |