From aeaaf571ada7d13a4b52c258b33f1d11b1898a7a Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 5 Jun 2018 12:35:35 -0400 Subject: [PATCH] =?utf8?q?=E2=9C=A8=20=F0=9F=8D=B0=20=E2=9C=A8=20isn't=20a?= =?utf8?q?ppropriate=20when=20it=20fails,=20fixes=20#300=20(#301)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- black.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5