~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

  • Committer: Jelmer Vernooij
  • Date: 2010-09-08 22:42:26 UTC
  • mto: This revision was merged to the branch mainline in revision 5414.
  • Revision ID: jelmer@samba.org-20100908224226-pyn8zp3okuo4hblj
Consistent spelling.

Show diffs side-by-side

added added

removed removed

Lines of Context:
562
562
    object will be created every system load.
563
563
 
564
564
    :cvar colocated_branches: Whether this formats supports colocated branches.
565
 
    :cvar supports_workingtree: This control directory can co-exist with a
 
565
    :cvar supports_workingtrees: This control directory can co-exist with a
566
566
        working tree.
567
567
    """
568
568
 
591
591
    """Whether co-located branches are supported for this control dir format.
592
592
    """
593
593
 
594
 
    supports_workingtree = True
 
594
    supports_workingtrees = True
595
595
 
596
596
    def get_format_description(self):
597
597
        """Return the short description for this format."""