# HG changeset patch # User Julien Cristau # Date 1716455111 -7200 # Node ID 33bcb1dd4101add96bc6d7cb6d061d276d41aa08 # Parent 865efc020c3355dca1cbaa35db80600009c01dd5 clonebundles: add missing newline to legacy response This seems to have been removed in 6.5 (likely by 60f9602b413e). diff -r 865efc020c33 -r 33bcb1dd4101 mercurial/wireprotov1server.py --- a/mercurial/wireprotov1server.py Fri Apr 26 19:10:35 2024 +0100 +++ b/mercurial/wireprotov1server.py Thu May 23 11:05:11 2024 +0200 @@ -312,6 +312,7 @@ if line.startswith(bundlecaches.CLONEBUNDLESCHEME): continue modified_manifest.append(line) + modified_manifest.append(b'') return wireprototypes.bytesresponse(b'\n'.join(modified_manifest))