/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/git/mapping.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-14 17:59:16 UTC
  • mto: This revision was merged to the branch mainline in revision 7065.
  • Revision ID: jelmer@jelmer.uk-20180614175916-a2e2xh5k533guq1x
Move breezy.plugins.git to breezy.git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import base64
24
24
import stat
25
25
 
26
 
from ... import (
 
26
from .. import (
27
27
    bencode,
28
28
    errors,
29
29
    foreign,
30
30
    trace,
31
31
    )
32
 
from ...bzr.inventory import (
 
32
from ..bzr.inventory import (
33
33
    ROOT_ID,
34
34
    )
35
 
from ...foreign import (
 
35
from ..foreign import (
36
36
    ForeignVcs,
37
37
    VcsMappingRegistry,
38
38
    ForeignRevision,
39
39
    )
40
 
from ...revision import (
 
40
from ..revision import (
41
41
    NULL_REVISION,
42
42
    )
43
43
from .errors import (
507
507
 
508
508
 
509
509
mapping_registry = GitMappingRegistry()
510
 
mapping_registry.register_lazy('git-v1', "breezy.plugins.git.mapping",
 
510
mapping_registry.register_lazy('git-v1', __name__,
511
511
    "BzrGitMappingv1")
512
512
mapping_registry.register_lazy('git-experimental',
513
 
    "breezy.plugins.git.mapping", "BzrGitMappingExperimental")
 
513
    __name__, "BzrGitMappingExperimental")
514
514
# Uncomment the next line to enable the experimental bzr-git mappings.
515
515
# This will make sure all bzr metadata is pushed into git, allowing for
516
516
# full roundtripping later.