Remove happiness of error message (#852)

This commit is contained in:
Katie McLaughlin 2019-05-16 22:02:17 +10:00 committed by Zsolt Dollenstein
parent 957ba24bb6
commit b85c345dbc

View File

@ -457,8 +457,7 @@ def main(
)
if verbose or not quiet:
bang = "💥 💔 💥" if report.return_code else "✨ 🍰 ✨"
out(f"All done! {bang}")
out("Oh no! 💥 💔 💥" if report.return_code else "All done! ✨ 🍰 ✨")
click.secho(str(report), err=True)
ctx.exit(report.return_code)