~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: abentley
  • Date: 2005-10-15 01:07:02 UTC
  • mfrom: (1185.16.40)
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1460.
  • Revision ID: abentley@lappy-20051015010702-0b7a58668e447397
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):