summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonel Cristian Maries <contact@ionelmc.ro>2014-01-12 15:18:23 +0200
committerIonel Cristian Maries <contact@ionelmc.ro>2014-01-12 15:18:23 +0200
commite29fc94757f9d5d1cf1a1e98d2004cb80d394b4c (patch)
tree2ec275b3f90e22e84dabe9390caa9f99dfb6cff2
parent20eb6ebe1f80228c8691d1d8ecc0de3dc60d9f69 (diff)
downloadtox-e29fc94757f9d5d1cf1a1e98d2004cb80d394b4c.tar.gz
Remove virtualenvbin config option.
-rw-r--r--tox/_config.py1
-rw-r--r--tox/_venv.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/tox/_config.py b/tox/_config.py
index 928305c..3644d8b 100644
--- a/tox/_config.py
+++ b/tox/_config.py
@@ -357,7 +357,6 @@ class parseini:
ixserver = None
name = self._replace_forced_dep(name, config)
vc.deps.append(DepConfig(name, ixserver))
- vc.virtualenvbin = reader.getdefault(section, "virtualenvbin", "virtualenv")
vc.distribute = reader.getbool(section, "distribute", False)
vc.sitepackages = self.config.option.sitepackages or \
reader.getbool(section, "sitepackages", False)
diff --git a/tox/_venv.py b/tox/_venv.py
index 4ed7b47..3ad0817 100644
--- a/tox/_venv.py
+++ b/tox/_venv.py
@@ -179,7 +179,7 @@ class VirtualEnv(object):
action = self.session.newaction(self, "create")
config_interpreter = self.getsupportedinterpreter()
- args = [self.envconfig.virtualenvbin]
+ args = ['virtualenv']
if self.envconfig.distribute:
args.append("--distribute")
else: