comparison mercurial/wireproto.py @ 32880:4c2a46f89f08

wireproto: update reference to deleted addchangegroup() Thanks to Yuya for catching this.
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 16 Jun 2017 09:37:22 -0700
parents 33b7283a3828
children ffb1d0f541f5
comparison
equal deleted inserted replaced
32879:1858fc2327ef 32880:4c2a46f89f08
409 '''Send cg (a readable file-like object representing the 409 '''Send cg (a readable file-like object representing the
410 changegroup to push, typically a chunkbuffer object) to the 410 changegroup to push, typically a chunkbuffer object) to the
411 remote server as a bundle. 411 remote server as a bundle.
412 412
413 When pushing a bundle10 stream, return an integer indicating the 413 When pushing a bundle10 stream, return an integer indicating the
414 result of the push (see localrepository.addchangegroup()). 414 result of the push (see changegroup.apply()).
415 415
416 When pushing a bundle20 stream, return a bundle20 stream. 416 When pushing a bundle20 stream, return a bundle20 stream.
417 417
418 `url` is the url the client thinks it's pushing to, which is 418 `url` is the url the client thinks it's pushing to, which is
419 visible to hooks. 419 visible to hooks.