Skip to content

Commit 1acb58c

Browse files
committed
updating the logic of debug-info output format
1 parent fec95e4 commit 1acb58c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tmuxp/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,10 +1085,10 @@ def format_tmux_resp(std_resp):
10851085
"""
10861086
Format tmux command response for tmuxp stdout.
10871087
"""
1088-
return [
1088+
return '\n'.join([
10891089
'\n'.join(prepend_tab(std_resp.stdout)),
10901090
click.style('\n'.join(prepend_tab(std_resp.stderr)), fg='red'),
1091-
]
1091+
])
10921092

10931093
output = [
10941094
output_break(),

0 commit comments

Comments
 (0)