~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-17 04:51:54 UTC
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050917045153-bfa0bd371b0b877e
Most tests pass, some problems with unavailable socket recv

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
        # I'm concerned about when it chooses to strip the last
142
142
        # portion of the path, and when it doesn't.
143
143
        path = '/'.join(basepath)
144
 
        return urlparse.urlunparse(self._proto,
145
 
                self._host, path, '', '', '')
 
144
        return urlparse.urlunparse((self._proto,
 
145
                self._host, path, '', '', ''))
146
146
 
147
147
    def relpath(self, abspath):
148
148
        if not abspath.startswith(self.base):