We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb368db commit 218ab0cCopy full SHA for 218ab0c
backend/beastiary/cli.py
@@ -53,8 +53,8 @@ def main(
53
)
54
check_for_new_samples(api.db, trace=trace)
55
typer.echo(f"✅ - {trace['path']}")
56
- except ValueError:
57
- typer.echo(f"❌ - {path}")
+ except ValueError as e:
+ typer.echo(f"❌ - {path}: {e}")
58
typer.echo("")
59
60
setattr(api, "token", token)
0 commit comments