~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: John Arbash Meinel
  • Date: 2011-09-12 18:40:02 UTC
  • mfrom: (6132 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6133.
  • Revision ID: john@arbash-meinel.com-20110912184002-o23eu21fdgp35h2q
Merge bzr.dev, resolve release-notes (aka NEWS) conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
            the working tree has been constructed from.
225
225
            """)
226
226
 
 
227
    def has_versioned_directories(self):
 
228
        """See `Tree.has_versioned_directories`."""
 
229
        return self._format.supports_versioned_directories
 
230
 
227
231
    def break_lock(self):
228
232
        """Break a lock if one is present from another instance.
229
233