~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Martin Pool
  • Date: 2009-03-13 02:36:26 UTC
  • mto: This revision was merged to the branch mainline in revision 4144.
  • Revision ID: mbp@sourcefrog.net-20090313023626-7xn5siauidkgm1jw
Re-add mutter calls during fetch

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        self._fetch_spec = fetch_spec
78
78
        self.find_ghosts = find_ghosts
79
79
        self.from_repository.lock_read()
 
80
        mutter("Using fetch logic to copy between %s(%s) and %s(%s)",
 
81
               self.from_repository, self.from_repository._format,
 
82
               self.to_repository, self.to_repository._format)
80
83
        try:
81
84
            self.__fetch()
82
85
        finally:
160
163
        """
161
164
        if self._fetch_spec is not None:
162
165
            return self._fetch_spec
 
166
        mutter('fetch up to rev {%s}', self._last_revision)
163
167
        if self._last_revision is NULL_REVISION:
164
168
            # explicit limit of no revisions needed
165
169
            return None