/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 breezy/plugins/git/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-30 14:28:33 UTC
  • mfrom: (7005 work)
  • mto: This revision was merged to the branch mainline in revision 7008.
  • Revision ID: jelmer@jelmer.uk-20180630142833-eg208wfe8la76m0x
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
277
277
    format_registry as repository_format_registry,
278
278
    network_format_registry as repository_network_format_registry,
279
279
    )
280
 
repository_network_format_registry.register_lazy('git',
 
280
repository_network_format_registry.register_lazy(b'git',
281
281
    __name__ + '.repository', 'GitRepositoryFormat')
282
282
 
283
283
register_extra_lazy_repository_format = getattr(repository_format_registry,
288
288
from ...branch import (
289
289
    network_format_registry as branch_network_format_registry,
290
290
    )
291
 
branch_network_format_registry.register_lazy('git',
 
291
branch_network_format_registry.register_lazy(b'git',
292
292
    __name__ + '.branch', 'LocalGitBranchFormat')
293
293
 
294
294