aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command
diff options
context:
space:
mode:
authorBenoit Pierre <benoit.pierre@gmail.com>2018-01-25 08:36:12 +0100
committerBenoit Pierre <benoit.pierre@gmail.com>2018-01-25 08:49:03 +0100
commit4d38fb9841d25c6bd5779824a16975ed9ab421b2 (patch)
tree1d7e73fbf9052cfe78105ab2a839b96709665a80 /setuptools/command
parent618312bec376e5c71b0938a754106973d8889417 (diff)
downloadexternal_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-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 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()