/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to repository.py

Unmark as deprecated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        ancestry.reverse()
132
132
        return ancestry
133
133
 
 
134
    def _warn_if_deprecated(self):
 
135
        # This class isn't deprecated
 
136
        pass
 
137
 
134
138
    def get_signature_text(self, revision_id):
135
139
        raise errors.NoSuchRevision(self, revision_id)
136
140
 
284
288
class GitFormat(object):
285
289
 
286
290
    supports_tree_reference = False
 
291
    rich_root_data = True
287
292
 
288
293
    def get_format_description(self):
289
294
        return "Git Repository"
 
295
 
 
296
    def initialize(self, url, shared=False, _internal=False):
 
297
        raise bzr_errors.UninitializableFormat(self)
 
298
 
 
299
    def check_conversion_target(self, target_repo_format):
 
300
        return target_repo_format.rich_root_data