From 6e059c744625aec90367fbc841a4b3bbbebad5ad Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Fri, 11 Sep 2020 16:34:49 -0700 Subject: [PATCH] install: fixed hiding output for uninstalling local core --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 43ba186c..535d1240 100644 --- a/tasks.py +++ b/tasks.py @@ -418,7 +418,7 @@ def uninstall(c, dev=False, verbose=False, local=False, prefix=DEFAULT_PREFIX): if local: with p.start("uninstalling core"): - c.run("sudo python3 -m pip uninstall -y core") + c.run("sudo python3 -m pip uninstall -y core", hide=hide) else: python = get_python(c, warn=True) if python: