~cjwatson/brz-svn/fix-http-probe

« back to all changes in this revision

Viewing changes to mapping2.py

  • Committer: Jelmer Vernooij
  • Date: 2020-02-03 09:16:45 UTC
  • Revision ID: jelmer@jelmer.uk-20200203091645-q0f1yq77zkr1s3cz
More Python3 / formatting / breezy fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    )
26
26
from breezy.sixish import text_type
27
27
 
28
 
from breezy.plugins.svn.errors import (
 
28
from .errors import (
29
29
    LayoutUnusable,
30
30
    NotSvnBranchPath,
31
31
    NoLayoutTagSetSupport,
32
32
    )
33
 
from breezy.plugins.svn.layout import (
 
33
from .layout import (
34
34
    RepositoryLayout,
35
35
    get_root_paths,
36
36
    )
37
 
from breezy.plugins.svn.layout.standard import (
 
37
from .layout.standard import (
38
38
    RootLayout,
39
39
    TrunkLayout,
40
40
    )
41
 
from breezy.plugins.svn.mapping import (
 
41
from .mapping import (
42
42
    BzrSvnMapping,
43
43
    escape_svn_path,
44
44
    unescape_svn_path,