/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 branch.py

Use relative imports where possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    )
28
28
from dulwich.repo import check_ref_format
29
29
 
30
 
from bzrlib import (
 
30
from ... import (
31
31
    branch,
32
32
    bzrdir,
33
33
    config,
38
38
    transport,
39
39
    urlutils,
40
40
    )
41
 
from bzrlib.decorators import (
 
41
from ...decorators import (
42
42
    needs_read_lock,
43
43
    )
44
 
from bzrlib.revision import (
 
44
from ...revision import (
45
45
    NULL_REVISION,
46
46
    )
47
 
from bzrlib.trace import (
 
47
from ...trace import (
48
48
    is_quiet,
49
49
    mutter,
50
50
    warning,
51
51
    )
52
52
 
53
 
from bzrlib.plugins.git.config import (
 
53
from .config import (
54
54
    GitBranchConfig,
55
55
    GitBranchStack,
56
56
    )
57
 
from bzrlib.plugins.git.errors import (
 
57
from .errors import (
58
58
    NoPushSupport,
59
59
    NoSuchRef,
60
60
    )
61
 
from bzrlib.plugins.git.refs import (
 
61
from .refs import (
62
62
    is_tag,
63
63
    ref_to_branch_name,
64
64
    ref_to_tag_name,
65
65
    tag_name_to_ref,
66
66
    )
67
 
from bzrlib.plugins.git.unpeel_map import (
 
67
from .unpeel_map import (
68
68
    UnpeelMap,
69
69
    )
70
70
 
71
 
from bzrlib.foreign import ForeignBranch
 
71
from ...foreign import ForeignBranch
72
72
 
73
73
 
74
74
class GitPullResult(branch.PullResult):