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: Keywords:

Created on 2008-08-26 21:23 by timh, last changed 2008-08-26 21:30 by benjamin.peterson.

Messages
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) Date: 2008-08-26 21:30
This has been fixed in the trunk.
History
Date User Action Args
2008-08-26 21:30:10benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: out of date
messages: + msg71999
2008-08-26 21:23:47timhcreate