/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 bzrlib/repository.py

  • Committer: Martin Pool
  • Date: 2008-06-25 10:06:48 UTC
  • mfrom: (3509 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3510.
  • Revision ID: mbp@sourcefrog.net-20080625100648-ac20jxcm3ojucuby
merge trunk; remove RemoteToOtherFetcher

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
2895
2895
 
2896
2896
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
2897
2897
        self._ensure_real_inter()
2898
 
        self._real_inter.fetch(revision_id=revision_id, pb=pb,
 
2898
        return self._real_inter.fetch(revision_id=revision_id, pb=pb,
2899
2899
            find_ghosts=find_ghosts)
2900
2900
 
2901
2901
    @classmethod