diff --git a/Lib/warnings.py b/Lib/warnings.py index 8ca0f730cb1..5ca4b9c1604 100644 --- a/Lib/warnings.py +++ b/Lib/warnings.py @@ -12,7 +12,7 @@ def showwarning(message, category, filename, lineno, file=None, line=None): if file is None: file = sys.stderr if file is None: - # sys.stderr is None when ran with pythonw.exe - warnings get lost + # sys.stderr is None when run with pythonw.exe - warnings get lost return try: file.write(formatwarning(message, category, filename, lineno, line))