From 8ee0a3a869fb7e78c62a5ced2de60a80cf7257ac Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 10 Jun 2020 15:12:34 -0700 Subject: [PATCH] Install git-review under python3 for proposed updates We were installing git-review under python2 in order to propose updates to Gerrit. git-review happily runs under python3 so update the installation to avoid python2. Change-Id: I1671345d71cd60f6508a2c067c4e308680234afe --- playbooks/proposal/pre.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/proposal/pre.yaml b/playbooks/proposal/pre.yaml index 81c1b1ded3..117609ec73 100644 --- a/playbooks/proposal/pre.yaml +++ b/playbooks/proposal/pre.yaml @@ -1,7 +1,7 @@ - hosts: all pre_tasks: - name: Install git-review - command: pip install git-review + command: pip3 install git-review become: yes - name: Copy scripts to the script dir on the node