~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-01 11:16:40 UTC
  • mfrom: (4229.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090401111640-wnn3068uv1nc8lhj
1.14 formats (Ian Clatworthy)

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
2982
2986
 
2983
2987
__default_format = WorkingTreeFormat4()
2984
2988
WorkingTreeFormat.register_format(__default_format)
 
2989
WorkingTreeFormat.register_format(WorkingTreeFormat6())
2985
2990
WorkingTreeFormat.register_format(WorkingTreeFormat5())
2986
2991
WorkingTreeFormat.register_format(WorkingTreeFormat3())
2987
2992
WorkingTreeFormat.set_default_format(__default_format)