~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

(Aaron Bentley) Update repo format strings

Show diffs side-by-side

added added

removed removed

Lines of Context:
2079
2079
 
2080
2080
    def get_format_description(self):
2081
2081
        """See RepositoryFormat.get_format_description()."""
2082
 
        return self.__doc__
 
2082
        return "Packs 5 (adds stacking support, requires bzr 1.6)"
2083
2083
 
2084
2084
    def check_conversion_target(self, target_format):
2085
2085
        pass
2086
2086
 
2087
2087
 
2088
2088
class RepositoryFormatKnitPack5RichRoot(RepositoryFormatPack):
2089
 
    """A repository with subtrees and external references.
 
2089
    """A repository with rich roots and external references.
2090
2090
 
2091
2091
    New in release 1.6.
2092
2092
 
2121
2121
        return "Bazaar RepositoryFormatKnitPack5RichRoot (bzr 1.6)\n"
2122
2122
 
2123
2123
    def get_format_description(self):
2124
 
        """See RepositoryFormat.get_format_description()."""
2125
 
        return self.__doc__
 
2124
        return "Packs 5 rich-root (adds stacking support, requires bzr 1.6)"
2126
2125
 
2127
2126
 
2128
2127
class RepositoryFormatPackDevelopment0(RepositoryFormatPack):