X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FPyCurl.py;h=4ae2fdc9a4a7d9663c67214146ff08328933c537;hb=HEAD;hp=e020882304a99bef9be63b93d943a25c1319e620;hpb=b5f0bf5f6e900fc383d9251a90d5476bfd48c0cd;p=plcapi.git diff --git a/PLC/PyCurl.py b/PLC/PyCurl.py index e020882..4ae2fdc 100644 --- a/PLC/PyCurl.py +++ b/PLC/PyCurl.py @@ -5,8 +5,6 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id$ -# import os import xmlrpclib @@ -51,7 +49,7 @@ class PyCurlTransport(xmlrpclib.Transport): self.body = "" def body(buf): self.body += buf - self.curl.setopt(pycurl.WRITEFUNCTION, body) + self.curl.setopt(pycurl.WRITEFUNCTION, body) def request(self, host, handler, request_body, verbose = 1): # Set verbosity @@ -73,7 +71,7 @@ class PyCurlTransport(xmlrpclib.Transport): if errcode == 60: raise Exception, "PyCurl: SSL certificate validation failed" elif errcode != 200: - raise Exception, "PyCurl: HTTP error %d -- %r" % (errcode,errmsg) + raise Exception, "PyCurl: HTTP error %d -- %r" % (errcode,errmsg) # Parse response p, u = self.getparser()