From: Peter Bengtsson Date: Tue, 5 Jun 2018 16:35:35 +0000 (-0400) Subject: ✨ 🍰 ✨ isn't appropriate when it fails, fixes #300 (#301) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/aeaaf571ada7d13a4b52c258b33f1d11b1898a7a?ds=sidebyside;pf=etc ✨ 🍰 ✨ isn't appropriate when it fails, fixes #300 (#301) --- diff --git a/black.py b/black.py index 06edc9b..dbaf14a 100644 --- a/black.py +++ b/black.py @@ -337,7 +337,7 @@ def main( finally: shutdown(loop) if verbose or not quiet: - out("All done! ✨ 🍰 ✨") + out("All done!" + ("💥 💔 💥" if report.return_code else " ✨ 🍰 ✨")) click.secho(str(report), err=True) ctx.exit(report.return_code)