/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/git-remote-bzr

  • Committer: Jelmer Vernooij
  • Date: 2020-02-18 01:57:45 UTC
  • mto: This revision was merged to the branch mainline in revision 7493.
  • Revision ID: jelmer@jelmer.uk-20200218015745-q2ss9tsk74h4nh61
drop use of future.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    open_remote_dir,
42
42
    )
43
43
 
44
 
from breezy.trace import warning
45
 
 
46
44
parser = optparse.OptionParser()
47
45
(opts, args) = parser.parse_args()
48
46
(shortname, url) = args
49
47
 
50
 
warning(
51
 
    'git-remote-bzr is experimental and has not been optimized for '
52
 
    'performance. Use \'brz fast-export\' and \'git fast-import\' for '
53
 
    'large repositories.')
54
 
 
55
48
helper = RemoteHelper(open_local_dir(), shortname, open_remote_dir(url))
56
49
helper.process(sys.stdin.buffer, sys.stdout.buffer)