Fix usage of secho (wrongly did echo)

This commit is contained in:
Oz N Tiram
2022-05-12 18:56:20 +02:00
parent 3e15161cb7
commit 23de4bbcfc
+2 -2
View File
@@ -410,8 +410,8 @@ class Environment:
paths[key] = make_posix(paths[key])
return paths
else:
click.echo(f"Failed to load paths: {c.stderr}", fg="yellow")
click.echo(f"Output: {c.stdout}", fg="yellow")
click.secho(f"Failed to load paths: {c.stderr}", fg="yellow")
click.secho(f"Output: {c.stdout}", fg="yellow")
return None
def get_lib_paths(self):