From e7090955e006c1877c011afd8fcbe49bdbde7955 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Tue, 20 Dec 2022 14:15:33 -0600 Subject: [PATCH] refactor: simplify some outputs to be less verbose --- src/viv/viv.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/viv/viv.py b/src/viv/viv.py index ddee917..0053bcc 100755 --- a/src/viv/viv.py +++ b/src/viv/viv.py @@ -320,7 +320,7 @@ class ViVenv: run( cmd, - spinmsg=f"installing packages in vivenv: {self.name}", + spinmsg=f"installing packages in vivenv", clean_up_path=self.path, verbose=bool(os.getenv("VIV_VERBOSE")), ) @@ -593,10 +593,9 @@ class Viv: if not metadata_file.is_file(): error(f"Unable to find metadata for vivenv: {args.vivenv}", code=1) - echo(f"more info about {vivenv.name}:\n") + echo(f"more info about {vivenv.name}:") vivenv.dump_info() - echo(f"located at: {vivenv.path}") def cli(self):