X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d638d56e0e383caeeff048e76b02b50b29367c3d..61a8d401c797240c0bc5313a9ff068bb269479a5:/black.py diff --git a/black.py b/black.py index 551d3c1..06edc9b 100644 --- a/black.py +++ b/black.py @@ -46,7 +46,7 @@ from blib2to3.pgen2 import driver, token from blib2to3.pgen2.parse import ParseError -__version__ = "18.5b1" +__version__ = "18.6b0" DEFAULT_LINE_LENGTH = 88 DEFAULT_EXCLUDES = ( r"/(\.git|\.hg|\.mypy_cache|\.tox|\.venv|_build|buck-out|build|dist)/" @@ -338,7 +338,7 @@ def main( shutdown(loop) if verbose or not quiet: out("All done! ✨ 🍰 ✨") - click.echo(str(report)) + click.secho(str(report), err=True) ctx.exit(report.return_code)