hgext/narrow/narrowcommands.py
changeset 42944 c2676b5a9f59
parent 42813 268662aac075
child 42945 40f78072fda9
equal deleted inserted replaced
42943:5fadf6103790 42944:c2676b5a9f59
   291             with wrappedextraprepare:
   291             with wrappedextraprepare:
   292                 exchange.pull(repo, remote, heads=common)
   292                 exchange.pull(repo, remote, heads=common)
   293         else:
   293         else:
   294             known = []
   294             known = []
   295             if ellipsesremote:
   295             if ellipsesremote:
   296                 known = [node.hex(ctx.node()) for ctx in
   296                 known = [ctx.node() for ctx in
   297                          repo.set('::%ln', common)
   297                          repo.set('::%ln', common)
   298                          if ctx.node() != node.nullid]
   298                          if ctx.node() != node.nullid]
   299             with remote.commandexecutor() as e:
   299             with remote.commandexecutor() as e:
   300                 bundle = e.callcommand('narrow_widen', {
   300                 bundle = e.callcommand('narrow_widen', {
   301                     'oldincludes': oldincludes,
   301                     'oldincludes': oldincludes,