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

  • Committer: Jelmer Vernooij
  • Date: 2011-03-10 13:23:20 UTC
  • mto: (5582.10.90 weave-plugin)
  • mto: This revision was merged to the branch mainline in revision 5717.
  • Revision ID: jelmer@samba.org-20110310132320-k6uclq04lapawivt
Fix imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 
92
92
    def __init__(self):
93
93
        super(BzrBranchFormat4, self).__init__()
94
 
        from bzrlib.bzrdir import BzrDirFormat4, BzrDirFormat5, BzrDirFormat6
 
94
        from bzrlib.bzrdir_weave import (
 
95
            BzrDirFormat4, BzrDirFormat5, BzrDirFormat6)
95
96
        self._matchingbzrdir = BzrDirFormat6()
96
97
        self._compatible_bzrdirs = [BzrDirFormat4, BzrDirFormat5,
97
98
            BzrDirFormat6]