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

  • Committer: Jelmer Vernooij
  • Date: 2019-03-05 07:32:38 UTC
  • mto: (7290.1.21 work)
  • mto: This revision was merged to the branch mainline in revision 7311.
  • Revision ID: jelmer@jelmer.uk-20190305073238-zlqn981opwnqsmzi
Add appveyor configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Foreign branch utilities."""
18
18
 
 
19
from __future__ import absolute_import
 
20
 
 
21
 
19
22
from .branch import (
20
23
    Branch,
21
24
    )
22
25
from .repository import Repository
23
26
from .revision import Revision
24
 
from . import (
 
27
from .lazy_import import lazy_import
 
28
lazy_import(globals(), """
 
29
from breezy import (
25
30
    errors,
26
31
    registry,
27
32
    )
 
33
""")
28
34
 
29
35
 
30
36
class VcsMapping(object):