~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Patch Queue Manager
  • Date: 2011-12-06 16:05:01 UTC
  • mfrom: (6341.1.6 vf-search)
  • Revision ID: pqm@pqm.ubuntu.com-20111206160501-uxh307vklxc6zztm
(jelmer) Move search result handling into a separate module. (Jelmer
 Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    transport as _mod_transport,
47
47
    ui,
48
48
    urlutils,
 
49
    vf_search,
49
50
    win32utils,
50
51
    workingtree_3,
51
52
    workingtree_4,
200
201
                if (result_repo.user_url == result.user_url
201
202
                    and not require_stacking and
202
203
                    revision_id is not None):
203
 
                    fetch_spec = graph.PendingAncestryResult(
 
204
                    fetch_spec = vf_search.PendingAncestryResult(
204
205
                        [revision_id], local_repo)
205
206
                    result_repo.fetch(local_repo, fetch_spec=fetch_spec)
206
207
                else: