/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/git/remote.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-14 17:59:16 UTC
  • mto: This revision was merged to the branch mainline in revision 7065.
  • Revision ID: jelmer@jelmer.uk-20180614175916-a2e2xh5k533guq1x
Move breezy.plugins.git to breezy.git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from io import BytesIO
22
22
import re
23
23
 
24
 
from ... import (
 
24
from .. import (
25
25
    config,
26
26
    debug,
27
27
    errors,
30
30
    ui,
31
31
    urlutils,
32
32
    )
33
 
from ...push import (
 
33
from ..push import (
34
34
    PushResult,
35
35
    )
36
 
from ...errors import (
 
36
from ..errors import (
37
37
    AlreadyBranchError,
38
38
    BzrError,
39
39
    DivergedBranches,
47
47
    NoWorkingTree,
48
48
    UninitializableFormat,
49
49
    )
50
 
from ...revisiontree import RevisionTree
51
 
from ...transport import (
 
50
from ..revisiontree import RevisionTree
 
51
from ..transport import (
52
52
    Transport,
53
53
    register_urlparse_netloc_protocol,
54
54
    )
266
266
class DulwichSSHVendor(dulwich.client.SSHVendor):
267
267
 
268
268
    def __init__(self):
269
 
        from ...transport import ssh
 
269
        from ..transport import ssh
270
270
        self.bzr_ssh_vendor = ssh._get_ssh_vendor()
271
271
 
272
272
    def run_command(self, host, command, username=None, port=None):