~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.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:
41
41
    transport,
42
42
    ui,
43
43
    urlutils,
 
44
    vf_search,
44
45
    )
45
46
from bzrlib.i18n import gettext, ngettext
46
47
""")
937
938
                    tags_to_fetch = set(self.tags.get_reverse_tag_dict())
938
939
                except errors.TagsNotSupported:
939
940
                    tags_to_fetch = set()
940
 
                fetch_spec = _mod_graph.NotInOtherForRevs(self.repository,
 
941
                fetch_spec = vf_search.NotInOtherForRevs(self.repository,
941
942
                    old_repository, required_ids=[self.last_revision()],
942
943
                    if_present_ids=tags_to_fetch, find_ghosts=True).execute()
943
944
                self.repository.fetch(old_repository, fetch_spec=fetch_spec)