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

  • Committer: Ian Clatworthy
  • Date: 2009-03-31 14:12:27 UTC
  • mto: (4229.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4230.
  • Revision ID: ian.clatworthy@canonical.com-20090331141227-8dr1s44x16j7dina
split filtered views support out into WorkingTreeFormat6

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
import bzrlib.branch
81
81
from bzrlib.transport import get_transport
82
82
import bzrlib.ui
83
 
from bzrlib.workingtree_4 import WorkingTreeFormat4, WorkingTreeFormat5
 
83
from bzrlib.workingtree_4 import (
 
84
    WorkingTreeFormat4,
 
85
    WorkingTreeFormat5,
 
86
    WorkingTreeFormat6,
 
87
    )
84
88
""")
85
89
 
86
90
from bzrlib import symbol_versioning
2980
2984
 
2981
2985
__default_format = WorkingTreeFormat4()
2982
2986
WorkingTreeFormat.register_format(__default_format)
 
2987
WorkingTreeFormat.register_format(WorkingTreeFormat6())
2983
2988
WorkingTreeFormat.register_format(WorkingTreeFormat5())
2984
2989
WorkingTreeFormat.register_format(WorkingTreeFormat3())
2985
2990
WorkingTreeFormat.set_default_format(__default_format)