/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 breezy/transport/http/_urllib2_wrappers.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 12:25:18 UTC
  • mto: This revision was merged to the branch mainline in revision 7178.
  • Revision ID: jelmer@jelmer.uk-20181116122518-8tb1y9ul3joufu3d
Fix E128.

Show diffs side-by-side

added added

removed removed

Lines of Context:
287
287
    if PY3:
288
288
        def __init__(self, sock, debuglevel=0, method=None, url=None):
289
289
            self.url = url
290
 
            super(Response, self).__init__(sock, debuglevel=debuglevel,
291
 
                    method=method, url=url)
 
290
            super(Response, self).__init__(
 
291
                sock, debuglevel=debuglevel, method=method, url=url)
292
292
 
293
293
    def begin(self):
294
294
        """Begin to read the response from the server.