~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Robert Collins
  • Date: 2005-09-29 02:01:49 UTC
  • Revision ID: robertc@robertcollins.net-20050929020149-1ff16722c6a01b2c
reenable remotebranch tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
            self.pb = pb
102
102
        try:
103
103
            self.last_revision = self._find_last_revision(last_revision)
104
 
        except NoSuchRevision:
 
104
        except NoSuchRevision, e:
 
105
            mutter('failed getting last revision: %s', e)
105
106
            raise InstallFailed([last_revision])
106
107
        mutter('fetch up to rev {%s}', self.last_revision)
107
108
        try: