/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/versionedfile.py

  • Committer: Aaron Bentley
  • Date: 2006-08-18 20:53:05 UTC
  • mto: (1910.2.43 format-bumps)
  • mto: This revision was merged to the branch mainline in revision 1997.
  • Revision ID: abentley@panoramicfeedback.com-20060818205305-2df0367482c62222
Fail when trying to use interrepository on Knit2 and Knit1

Show diffs side-by-side

added added

removed removed

Lines of Context:
561
561
    _optimisers = set()
562
562
    """The available optimised InterVersionedFile types."""
563
563
 
 
564
    @staticmethod
 
565
    def is_compatible(source, target):
 
566
        return True
 
567
    
564
568
    def join(self, pb=None, msg=None, version_ids=None, ignore_missing=False):
565
569
        """Integrate versions from self.source into self.target.
566
570