/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-10-11 05:20:36 UTC
  • mfrom: (1442)
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1460.
  • Revision ID: aaron.bentley@utoronto.ca-20051011052036-23ff7bae64a29826
latest from robert collins

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(orig_error=e)
149
 
        except Exception,e:
150
 
            raise HttpTransportError(orig_error=e)
 
148
            raise NoSuchFile(msg = "Error retrieving %s" 
 
149
                             % self.abspath(relpath),
 
150
                             orig_error=e)
151
151
 
152
152
    def get_partial(self, relpath, start, length=None):
153
153
        """Get just part of a file.