/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/bzr/fetch.py

Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
import operator
28
28
 
29
 
from .lazy_import import lazy_import
 
29
from ..lazy_import import lazy_import
30
30
lazy_import(globals(), """
31
31
from breezy import (
32
32
    tsort,
36
36
    vf_search,
37
37
    )
38
38
""")
39
 
from . import (
 
39
from .. import (
40
40
    errors,
41
41
    ui,
42
42
    )
43
 
from .i18n import gettext
44
 
from .revision import NULL_REVISION
45
 
from .sixish import (
 
43
from ..i18n import gettext
 
44
from ..revision import NULL_REVISION
 
45
from ..sixish import (
46
46
    viewvalues,
47
47
    )
48
 
from .trace import mutter
 
48
from ..trace import mutter
49
49
 
50
50
 
51
51
class RepoFetcher(object):