mercurial/wireproto.py
changeset 30014 d34cf260d15b
parent 29735 919a4b7f531d
child 30187 3e86261bf110
--- a/mercurial/wireproto.py	Sun Sep 25 13:20:55 2016 -0700
+++ b/mercurial/wireproto.py	Sun Sep 25 12:20:31 2016 -0700
@@ -78,10 +78,11 @@
     #    """
     #    raise NotImplementedError()
 
-    def groupchunks(self, cg):
-        """return 4096 chunks from a changegroup object
+    def groupchunks(self, fh):
+        """Generator of chunks to send to the client.
 
-        Some protocols may have compressed the contents."""
+        Some protocols may have compressed the contents.
+        """
         raise NotImplementedError()
 
 class remotebatch(peer.batcher):