~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/_urllib.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-12-21 18:01:57 UTC
  • mfrom: (2208.1.2 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20061221180157-d1bc7971e9d0e6af
(Vincent Ladeuil) Small cleanups of Transports

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
    def __init__(self, base, from_transport=None):
45
45
        """Set the base path where files will be stored."""
46
 
        super(HttpTransport_urllib, self).__init__(base)
 
46
        super(HttpTransport_urllib, self).__init__(base, from_transport)
47
47
        if from_transport is not None:
48
48
            self._connection = from_transport._connection
49
49
            self._user = from_transport._user