/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: Martin Pool
  • Date: 2009-03-13 03:01:14 UTC
  • mfrom: (4138 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4144.
  • Revision ID: mbp@sourcefrog.net-20090313030114-y723gefxl8tfynsd
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
3062
3062
                stack_on = self._get_full_stack_on()
3063
3063
        try:
3064
3064
            branch.set_stacked_on_url(stack_on)
3065
 
        except errors.UnstackableBranchFormat:
 
3065
        except (errors.UnstackableBranchFormat,
 
3066
                errors.UnstackableRepositoryFormat):
3066
3067
            if self._require_stacking:
3067
3068
                raise
3068
3069