Commit 543e95ec authored by Tres Seaver's avatar Tres Seaver

- Forward port fix for collector #1548.

parent 296076ed
......@@ -22,6 +22,12 @@ Zope Changes
- Collector #1233: port ZOPE_CONFIG patch from Zope 2.7 to Zope 2.8
After Zope 2.8.0
Bugs Fixed
- Collector #1548: Fix 'httplib' usage in ZPublisher.Client.
Zope 2.8.0 (2005/06/11)
Bugs Fixed
......
......@@ -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