aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setuptools/command/install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py
index d8da70c9..664614ac 100644
--- a/setuptools/command/install.py
+++ b/setuptools/command/install.py
@@ -85,8 +85,7 @@ class install(_install):
from setuptools.command.easy_install import easy_install
cmd = easy_install(
- self.distribution, args="x", ignore_conflicts_at_my_risk=1,
- root=self.root, record=self.record,
+ self.distribution, args="x", root=self.root, record=self.record,
)
cmd.ensure_finalized() # finalize before bdist_egg munges install cmd
@@ -121,3 +120,4 @@ class install(_install):
+