Jelmer Vernooij 16 anos atrás
pai
commit
a76bcab6b4
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      dulwich/client.py

+ 1 - 1
dulwich/client.py

@@ -126,7 +126,7 @@ class GitClient(object):
         have = graph_walker.next()
         while have:
             self.proto.write_pkt_line("have %s\n" % have)
-            if self.can_read():
+            if self._can_read():
                 pkt = self.proto.read_pkt_line()
                 parts = pkt.rstrip("\n").split(" ")
                 if parts[0] == "ACK":