/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: Jelmer Vernooij
  • Date: 2011-02-07 14:00:50 UTC
  • mto: This revision was merged to the branch mainline in revision 5651.
  • Revision ID: jelmer@samba.org-20110207140050-2551pkugrm1p1yqs
Review comments from vila.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2883
2883
    """The known formats."""
2884
2884
 
2885
2885
    _extra_formats = []
2886
 
    """Extra formats, not for use in working trees."""
 
2886
    """Extra formats that can not be used in a metadir."""
2887
2887
 
2888
2888
    requires_rich_root = False
2889
2889
 
3192
3192
WorkingTreeFormat.register_format(WorkingTreeFormat4())
3193
3193
WorkingTreeFormat.register_format(WorkingTreeFormat3())
3194
3194
WorkingTreeFormat.set_default_format(__default_format)
3195
 
# formats which have no format string are not discoverable
3196
 
# and not independently creatable, so are not registered.
 
3195
# Register extra formats which have no format string are not discoverable
 
3196
# and not independently creatable. They are implicitly created as part of
 
3197
# e.g. older Bazaar formats or foreign formats.
3197
3198
WorkingTreeFormat.register_extra_format(WorkingTreeFormat2())