mercurial/wireprotov2peer.py
changeset 37722 89a16704114c
parent 37721 f7673845b167
child 37725 3ea8323d6f95
--- a/mercurial/wireprotov2peer.py	Sat Apr 14 11:49:06 2018 -0700
+++ b/mercurial/wireprotov2peer.py	Sat Apr 14 12:07:31 2018 -0700
@@ -25,7 +25,6 @@
         self.requestid = requestid
         self.command = command
 
-        self.cbor = False
         self.b = util.bytesio()
 
     def cborobjects(self):
@@ -124,9 +123,6 @@
         if action == 'responsedata':
             response.b.write(meta['data'])
 
-            if meta['cbor']:
-                response.cbor = True
-
             if meta['eos']:
                 # If the command has a decoder, resolve the future to the
                 # decoded value. Otherwise resolve to the rich response object.