Pārlūkot izejas kodu

Strip newline from final ACKed SHA while fetching packs.

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Mike Edgar 10 gadi atpakaļ
vecāks
revīzija
5d994163ef
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      dulwich/client.py

+ 1 - 1
dulwich/client.py

@@ -390,7 +390,7 @@ class GitClient(object):
         while pkt:
             parts = pkt.rstrip('\n').split(' ')
             if parts[0] == 'ACK':
-                graph_walker.ack(pkt.split(' ')[1])
+                graph_walker.ack(parts[1])
             if len(parts) < 3 or parts[2] not in (
                     'ready', 'continue', 'common'):
                 break