mercurial/wireprotov2server.py
changeset 46062 14ff4929ca8c
parent 45942 89a2afe31e82
child 46697 71443f742886
equal deleted inserted replaced
46061:44a52048c6d6 46062:14ff4929ca8c
  1047 
  1047 
  1048         followingmeta = []
  1048         followingmeta = []
  1049         followingdata = []
  1049         followingdata = []
  1050 
  1050 
  1051         if b'revision' in fields:
  1051         if b'revision' in fields:
  1052             revisiondata = cl.rawdata(node)
  1052             revisiondata = cl.revision(node)
  1053             followingmeta.append((b'revision', len(revisiondata)))
  1053             followingmeta.append((b'revision', len(revisiondata)))
  1054             followingdata.append(revisiondata)
  1054             followingdata.append(revisiondata)
  1055 
  1055 
  1056         # TODO make it possible for extensions to wrap a function or register
  1056         # TODO make it possible for extensions to wrap a function or register
  1057         # a handler to service custom fields.
  1057         # a handler to service custom fields.