/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Vincent Ladeuil
  • Date: 2007-11-14 08:20:26 UTC
  • mfrom: (2974 +trunk)
  • mto: (2990.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 2991.
  • Revision ID: v.ladeuil+lp@free.fr-20071114082026-4d27f52n5r0t82rw
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
258
258
        self._lock_token = None
259
259
        self._lock_count = 0
260
260
        self._leave_lock = False
261
 
        # for tests
262
 
        self._reconcile_does_inventory_gc = True
263
 
        self._reconcile_fixes_text_parents = True
 
261
        # For tests:
 
262
        # These depend on the actual remote format, so force them off for
 
263
        # maximum compatibility. XXX: In future these should depend on the
 
264
        # remote repository instance, but this is irrelevant until we perform
 
265
        # reconcile via an RPC call.
 
266
        self._reconcile_does_inventory_gc = False
 
267
        self._reconcile_fixes_text_parents = False
 
268
        self._reconcile_backsup_inventory = False
264
269
        self.base = self.bzrdir.transport.base
265
270
 
266
271
    def __str__(self):