[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/testing/xmlrpc.py rewrapped long lines

Christian Zagrodnick cz at gocept.com
Thu Dec 14 06:26:49 EST 2006


Log message for revision 71547:
  rewrapped long lines

Changed:
  U   Zope3/trunk/src/zope/app/testing/xmlrpc.py

-=-
Modified: Zope3/trunk/src/zope/app/testing/xmlrpc.py
===================================================================
--- Zope3/trunk/src/zope/app/testing/xmlrpc.py	2006-12-13 17:46:52 UTC (rev 71546)
+++ Zope3/trunk/src/zope/app/testing/xmlrpc.py	2006-12-14 11:26:47 UTC (rev 71547)
@@ -40,14 +40,16 @@
 
         host, extra_headers, x509 = self.get_host_info(host)
         if extra_headers:
-            request += "Authorization: %s\n" % (dict(extra_headers)["Authorization"],)
+            request += "Authorization: %s\n" % (
+                dict(extra_headers)["Authorization"],)
 
         request += "\n" + request_body
         response = HTTPCaller()(request, handle_errors=self.handleErrors)
 
         errcode = response.getStatus()
         errmsg = response.getStatusString()
-        # This is not the same way that the normal transport deals with the headers.
+        # This is not the same way that the normal transport deals with the
+        # headers.
         headers = response.getHeaders()
 
         if errcode != 200:



More information about the Zope3-Checkins mailing list