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

  • Committer: John Arbash Meinel
  • Date: 2009-08-18 14:49:52 UTC
  • mfrom: (4624 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4629.
  • Revision ID: john@arbash-meinel.com-20090818144952-mk2cy45ax9twl3lm
Merge bzr.dev 4624 in preparation for NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
 
131
131
    def check_conversion_target(self, target_format):
132
132
        target_repo_format = target_format.repository_format
133
 
        source_repo_format = self._format.repository_format
134
 
        source_repo_format.check_conversion_target(target_repo_format)
 
133
        self.open_repository()._format.check_conversion_target(target_repo_format)
135
134
 
136
135
    @staticmethod
137
136
    def _check_supported(format, allow_unsupported,
3549
3548
            if self._require_stacking:
3550
3549
                raise
3551
3550
 
 
3551
    def requires_stacking(self):
 
3552
        """Return True if this policy requires stacking."""
 
3553
        return self._stack_on is not None and self._require_stacking
 
3554
 
3552
3555
    def _get_full_stack_on(self):
3553
3556
        """Get a fully-qualified URL for the stack_on location."""
3554
3557
        if self._stack_on is None: