소스 검색

Strip newline from final ACKed SHA while fetching packs.

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Mike Edgar 10 년 전
부모
커밋
5d994163ef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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