Mercurial > public > mercurial-scm > hg
comparison mercurial/exchange.py @ 36575:df7b7d5033a5
exchange: remove dead assignment or forcebundle1
Differential Revision: https://phab.mercurial-scm.org/D2548
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 01 Mar 2018 17:16:36 -0800 |
parents | 724ddf2444a7 |
children | cc51b6a07869 |
comparison
equal
deleted
inserted
replaced
36574:45f149bf08d1 | 36575:df7b7d5033a5 |
---|---|
281 def _forcebundle1(op): | 281 def _forcebundle1(op): |
282 """return true if a pull/push must use bundle1 | 282 """return true if a pull/push must use bundle1 |
283 | 283 |
284 This function is used to allow testing of the older bundle version""" | 284 This function is used to allow testing of the older bundle version""" |
285 ui = op.repo.ui | 285 ui = op.repo.ui |
286 forcebundle1 = False | |
287 # The goal is this config is to allow developer to choose the bundle | 286 # The goal is this config is to allow developer to choose the bundle |
288 # version used during exchanged. This is especially handy during test. | 287 # version used during exchanged. This is especially handy during test. |
289 # Value is a list of bundle version to be picked from, highest version | 288 # Value is a list of bundle version to be picked from, highest version |
290 # should be used. | 289 # should be used. |
291 # | 290 # |