From ab8348bc51b58c6575fc5abf2d4b2f772efd7f79 Mon Sep 17 00:00:00 2001 From: Ricky Stewart Date: Mon, 18 May 2020 20:10:19 +0000 Subject: [PATCH] Bug 1638783 - Install Mercurial with pip3 rather than pip, which no longer exists on new Ubuntu/Debian versions r=froydnj Differential Revision: https://phabricator.services.mozilla.com/D75816 --- python/mozboot/mozboot/debian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mozboot/mozboot/debian.py b/python/mozboot/mozboot/debian.py index aa70cf2c7446..cbf5c3c243a3 100644 --- a/python/mozboot/mozboot/debian.py +++ b/python/mozboot/mozboot/debian.py @@ -209,4 +209,4 @@ class DebianBootstrapper( # pip. assert res == 1 - self.run_as_root(['pip', 'install', '--upgrade', 'Mercurial']) + self.run_as_root(['pip3', 'install', '--upgrade', 'Mercurial'])