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

Use relative imports where possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import sys
24
24
 
25
 
from bzrlib import (
 
25
from ... import (
26
26
    errors,
27
27
    trace,
28
28
    )
29
29
 
30
 
from bzrlib.bzrdir import (
 
30
from ...bzrdir import (
31
31
    BzrDir,
32
32
    )
33
33
 
34
 
from bzrlib.plugins.git.mapping import (
 
34
from .mapping import (
35
35
    default_mapping,
36
36
    )
37
 
from bzrlib.plugins.git.object_store import (
 
37
from .object_store import (
38
38
    get_object_store,
39
39
    )
40
 
from bzrlib.plugins.git.refs import (
 
40
from .refs import (
41
41
    get_refs_container,
42
42
    )
43
43