Remove indent on echo_error

This commit is contained in:
JessicaFavin 2018-11-04 19:18:32 +01:00
parent 0cbbcffd89
commit fd1efc8852
1 changed files with 1 additions and 3 deletions

View File

@ -71,9 +71,7 @@ class Dumper:
if self.outfp:
self.outfp.flush()
def echo_error(self, text, ident=None, **style):
if ident:
text = indent(ident, text)
def echo_error(self, text, **style):
click.secho(text, file=self.errfp, **style)
if self.errfp:
self.errfp.flush()