Skip to content

Commit 50572a9

Browse files
author
Robin Luckey
committed
Fixes "\n" vs "\t" error in server output
1 parent 20d25e2 commit 50572a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/scm/adapters/hglib/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def command_loop():
6565
send_failure() # Assume file not found
6666
elif cmd.get_action() == 'PARENT_TOKENS':
6767
tokens = commander.get_parent_tokens(cmd.get_arg(1))
68-
tokens = '\n'.join(tokens)
68+
tokens = '\t'.join(tokens)
6969
send_success(len(tokens))
7070
send_data(tokens)
7171
else:

0 commit comments

Comments
 (0)