Explorar o código

Fix error in fetching with side-band-64k disabled

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
David Keijser %!s(int64=12) %!d(string=hai) anos
pai
achega
926fda9342
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      dulwich/client.py

+ 1 - 1
dulwich/client.py

@@ -402,7 +402,7 @@ class GitClient(object):
                 raise Exception('Unexpected response %r' % data)
         else:
             while True:
-                data = self.read(rbufsize)
+                data = proto.read(rbufsize)
                 if data == "":
                     break
                 pack_data(data)