aboutsummaryrefslogtreecommitdiffstats
path: root/distribute_setup.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2009-08-09 16:40:17 -0700
committerPhilip Jenvey <pjenvey@underboss.org>2009-08-09 16:40:17 -0700
commitc9029603df0ca944e958c6d753cf1257e02bd365 (patch)
treeff881f8656a1f77161c21afb1c511f3f21b9d056 /distribute_setup.py
parenteb16649b8cca504ecde46bd3182333671e47250b (diff)
downloadexternal_python_setuptools-c9029603df0ca944e958c6d753cf1257e02bd365.tar.gz
external_python_setuptools-c9029603df0ca944e958c6d753cf1257e02bd365.tar.bz2
external_python_setuptools-c9029603df0ca944e958c6d753cf1257e02bd365.zip
remove duplicate -v arg
(transplanted from 0131f4eddc7df6042e98e02799064f2f836802db) --HG-- branch : distribute extra : rebase_source : 7d55bb261fca44726f81331beaa03cce3742aa53
Diffstat (limited to 'distribute_setup.py')
-rw-r--r--distribute_setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distribute_setup.py b/distribute_setup.py
index 645098d7..e50956fd 100644
--- a/distribute_setup.py
+++ b/distribute_setup.py
@@ -311,7 +311,7 @@ def _easy_install(argv, egg=None):
from setuptools.dist import Distribution
import distutils.core
if egg is not None:
- setup_args = list(argv) + ['-v'] + [egg]
+ setup_args = list(argv) + [egg]
else:
setup_args = list(argv)
try: