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.

classification
Title: Incorrect variable reference
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, georg.brandl, timh
Priority: normal Keywords:

Created on 2008-08-26 21:23 by timh, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg71998 - (view) Author: Tim Hemming (timh) Date: 2008-08-26 21:23
The following line is referencing a variable "d", but it should be "dict":

 logging.warning("Protocol problem: %s", "connection reset", extra=d)


Page:- http://www.python.org/doc/2.5/lib/module-logging.html
msg71999 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-08-26 21:30
This has been fixed in the trunk.
History
Date User Action Args
2022-04-11 14:56:38adminsetgithub: 47941
2008-08-26 21:30:10benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: out of date
messages: + msg71999
2008-08-26 21:23:47timhcreate