This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ddvoinikov
Recipients ddvoinikov
Date 2008-08-20.06:13:33
SpamBayes Score 0.020415407
Marked as misclassified No
Message-id <1219212814.95.0.707077475128.issue3614@psf.upfronthosting.co.za>
In-reply-to
Content
In xmlrpc.client:1204:
---
headers = {}
if extra_headers:
    for key, val in extra_headers:
        header[key] = val
---
shouldn't it read 
---
        headers[key] = val
              ^
---
?

Otherwise it bails out with 
---
NameError: global name 'header' is not defined
---
History
Date User Action Args
2008-08-20 06:13:35ddvoinikovsetrecipients: + ddvoinikov
2008-08-20 06:13:34ddvoinikovsetmessageid: <1219212814.95.0.707077475128.issue3614@psf.upfronthosting.co.za>
2008-08-20 06:13:34ddvoinikovlinkissue3614 messages
2008-08-20 06:13:33ddvoinikovcreate