Commit b5171756 authored by Tres Seaver's avatar Tres Seaver

- Forward port fix for collector #1548.

parent ca67e3a3
......@@ -34,6 +34,8 @@ Zope Changes
Bugs fixed
- Collector #1548: Fix 'httplib' usage in ZPublisher.Client.
- Collector #1792: applied patch for broken ZClasses
- Collector #1803: Fixed InitializeClass for some corner case.
......
......@@ -141,8 +141,7 @@ class Function:
)
try:
h=HTTP()
h.connect(self.host, self.port)
h=HTTP(self.host, self.port)
h.putrequest(method, self.rurl)
for hn,hv in headers.items():
h.putheader(translate(hn,dashtrans),hv)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment