N. Jourdane

Results 161 comments of N. Jourdane

The responsible line is [here](https://github.com/behave/behave/blob/main/behave/formatter/pretty.py#L162), which uses the [up function](https://github.com/behave/behave/blob/main/behave/formatter/ansi_escapes.py#L84) that moves the cursor up with ansi escape codes, messing things up: ```py def up(n): return "\x1b[%dA" % n ```...