From 4d20fc277630ca8fbfe842640a5b083d20d53aff Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Mon, 15 Jun 2015 16:15:53 +0200 Subject: [PATCH] Use python2.7 for doc-tools-update-cli-reference os_doc_tools/commands.py does not work with python3 at the moment. doc-tools-update-cli-reference does not work at the moment on distributions with python3 as default python interpreter. Enforce the usage of python2.7 for the used virtual environment. Change-Id: Iabb51a03c824ff317c99f34898cde891a915b060 --- bin/doc-tools-update-cli-reference | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doc-tools-update-cli-reference b/bin/doc-tools-update-cli-reference index 31e70551..dcad0030 100755 --- a/bin/doc-tools-update-cli-reference +++ b/bin/doc-tools-update-cli-reference @@ -41,7 +41,7 @@ if [[ ! -e $HOME/.gitconfig ]]; then fi if [[ ! -e .venv ]]; then - virtualenv .venv + virtualenv -p python2.7 .venv fi source .venv/bin/activate