~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Robert Collins
  • Date: 2005-10-05 05:29:27 UTC
  • mfrom: (1393.1.51)
  • Revision ID: robertc@robertcollins.net-20051005052926-03d3a49e1dbcb670
mergeĀ fromĀ martin

Show diffs side-by-side

added added

removed removed

Lines of Context:
238
238
        self._check_format(relax_version_check)
239
239
 
240
240
        def get_store(name, compressed=True):
 
241
            # FIXME: This approach of assuming stores are all entirely compressed
 
242
            # or entirely uncompressed is tidy, but breaks upgrade from 
 
243
            # some existing branches where there's a mixture; we probably 
 
244
            # still want the option to look for both.
241
245
            relpath = self._rel_controlfilename(name)
242
246
            if compressed:
243
247
                store = CompressedTextStore(self._transport.clone(relpath))