~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

 * New ``versionedfile.KeyMapper`` interface to abstract out the access to
   underyling .knit/.kndx etc files in repositories with partitioned
   storage. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
            return self.to_repository.search_missing_revision_ids(
206
206
                self.from_repository, self._last_revision,
207
207
                find_ghosts=self.find_ghosts)
208
 
        except errors.NoSuchRevision:
 
208
        except errors.NoSuchRevision, e:
209
209
            raise InstallFailed([self._last_revision])
210
210
 
211
211
    def _fetch_weave_text(self, file_id, required_versions):