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

Use relative imports where possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from dulwich.objects import ZERO_SHA
22
22
from dulwich.walk import Walker
23
23
 
24
 
from bzrlib import (
 
24
from ... import (
25
25
    errors,
26
26
    ui,
27
27
    )
28
 
from bzrlib.repository import (
 
28
from ...repository import (
29
29
    InterRepository,
30
30
    )
31
 
from bzrlib.revision import (
 
31
from ...revision import (
32
32
    NULL_REVISION,
33
33
    )
34
34
 
35
 
from bzrlib.plugins.git.errors import (
 
35
from .errors import (
36
36
    NoPushSupport,
37
37
    )
38
 
from bzrlib.plugins.git.object_store import (
 
38
from .object_store import (
39
39
    get_object_store,
40
40
    )
41
 
from bzrlib.plugins.git.repository import (
 
41
from .repository import (
42
42
    GitRepository,
43
43
    LocalGitRepository,
44
44
    GitRepositoryFormat,
45
45
    )
46
 
from bzrlib.plugins.git.remote import (
 
46
from .remote import (
47
47
    RemoteGitRepository,
48
48
    )
49
 
from bzrlib.plugins.git.unpeel_map import (
 
49
from .unpeel_map import (
50
50
    UnpeelMap,
51
51
    )
52
52