~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-07 13:28:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6404.
  • Revision ID: jelmer@samba.org-20111207132854-0ang5kiu8u3m3ey8
More refactoring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
826
826
 
827
827
 
828
828
class ControlComponentFormat(object):
829
 
    """A component that can live inside of a .bzr meta directory."""
 
829
    """A component that can live inside of a control directory."""
830
830
 
831
831
    upgrade_recommended = False
832
832
 
833
 
    def get_format_string(self):
834
 
        """Return the format of this format, if usable in meta directories."""
835
 
        raise NotImplementedError(self.get_format_string)
836
 
 
837
833
    def get_format_description(self):
838
834
        """Return the short description for this format."""
839
835
        raise NotImplementedError(self.get_format_description)