~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Aaron Bentley
  • Date: 2007-09-14 14:45:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2826.
  • Revision ID: abentley@panoramicfeedback.com-20070914144555-3rynerknpoivm2xv
Documentation updates from review

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
        raise NotImplementedError(self.create_branch)
246
246
 
247
247
    def destroy_branch(self):
 
248
        """Destroy the branch in this BzrDir"""
248
249
        raise NotImplementedError(self.destroy_branch)
249
250
 
250
251
    @staticmethod
898
899
        return self.open_branch()
899
900
 
900
901
    def destroy_branch(self):
901
 
        """See BzrDir.destroy_workingtree."""
 
902
        """See BzrDir.destroy_branch."""
902
903
        raise errors.UnsupportedOperation(self.destroy_branch, self)
903
904
 
904
905
    def create_repository(self, shared=False):