~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: 2010-08-24 21:59:21 UTC
  • mfrom: (5363.2.22 controldir-1)
  • Revision ID: pqm@pqm.ubuntu.com-20100824215921-p4nheij9k4x6i1jw
(jelmer) Split generic interface code out of bzrlib.bzrdir.BzrDir into
 bzrlib.controldir.ControlDir. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
 
100
100
        return response
101
101
 
102
 
    def disconnect(self):
103
 
        connection = self._get_connection()
104
 
        if connection is not None:
105
 
            connection.close()
106
 
 
107
102
    def _get(self, relpath, offsets, tail_amount=0):
108
103
        """See HttpTransport._get"""
109
104
        abspath = self._remote_path(relpath)