Fix closes issue12438 - idlelib.PyShell's showformatwarning method was passing an incorrect arg.

This commit is contained in:
Senthil Kumaran 2011-07-03 17:39:20 -07:00
parent b1b25f0ffd
commit 80dffefcd9
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ else:
file = warning_stream
try:
file.write(warnings.formatwarning(message, category, filename,
lineno, file=file, line=line))
lineno, line=line))
except IOError:
pass ## file (probably __stderr__) is invalid, warning dropped.
warnings.showwarning = idle_showwarning