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

  • Committer: Jelmer Vernooij
  • Date: 2019-10-19 23:41:27 UTC
  • mto: This revision was merged to the branch mainline in revision 7442.
  • Revision ID: jelmer@jelmer.uk-20191019234127-ks9lalg118t3eodn
Some fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
                if info is None:
211
211
                    trace.warning("Unable to find submodule info for %s", path)
212
212
                    continue
 
213
                remote_url = info[0].decode('utf-8')
213
214
                target = urlutils.join(urlutils.split_segment_parameters(url)[0], urlutils.escape(path))
214
 
                sublocation = _mod_branch.Branch.open(info[0])
 
215
                trace.note('Checking out submodule at %s to %s', remote_url, path)
 
216
                sublocation = _mod_branch.Branch.open(remote_url)
215
217
                sublocation.controldir.sprout(
216
218
                    target, basis.get_reference_revision(path),
217
219
                    force_new_repo=force_new_repo, recurse=recurse,