/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 10:19:02 UTC
  • mfrom: (6973.7.13 python3-g-real)
  • Revision ID: breezy.the.bot@gmail.com-20180630101902-thpqkbi44kqom06g
Fix more tests.

Merged from https://code.launchpad.net/~jelmer/brz/python3-g/+merge/348134

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