~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: Robert Collins
  • Date: 2005-10-13 03:43:37 UTC
  • mfrom: (1185.16.10)
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051013034337-595921e7d73b9ba6
mergeĀ fromĀ martin

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
        try:
146
146
            return get_url(self.abspath(relpath))
147
147
        except (BzrError, urllib2.URLError, IOError), e:
148
 
            raise NoSuchFile(msg = "Error retrieving %s" 
149
 
                             % self.abspath(relpath),
 
148
            raise NoSuchFile(msg = "Error retrieving %s: %s" 
 
149
                             % (self.abspath(relpath), str(e)),
150
150
                             orig_error=e)
151
151
 
152
152
    def get_partial(self, relpath, start, length=None):