/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/bundle/apply_bundle.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:
18
18
This contains functionality for installing bundles into repositories
19
19
"""
20
20
 
21
 
from ... import ui
22
 
from ...i18n import gettext
23
 
from ...merge import Merger
24
 
from ...progress import ProgressPhase
25
 
from ...trace import note
26
 
from ..vf_repository import install_revision
 
21
from __future__ import absolute_import
 
22
 
 
23
from .. import ui
 
24
from ..i18n import gettext
 
25
from ..merge import Merger
 
26
from ..progress import ProgressPhase
 
27
from ..trace import note
 
28
from ..bzr.vf_repository import install_revision
27
29
 
28
30
 
29
31
def install_bundle(repository, bundle_reader):