diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-04-26 18:34:04 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-04-26 18:34:04 (GMT) |
commit | 985ef87ea0c5e1bbcbfd4fb41ae99c963ac58840 (patch) | |
tree | 0887cdd7f44cf0b45e28363078c65e08d567b7da /Lib/logging/__init__.py | |
parent | 26fe4b70cf38d9de4001e4b1cf9c2206ad3e1b4b (diff) | |
download | cpython-985ef87ea0c5e1bbcbfd4fb41ae99c963ac58840.zip cpython-985ef87ea0c5e1bbcbfd4fb41ae99c963ac58840.tar.gz cpython-985ef87ea0c5e1bbcbfd4fb41ae99c963ac58840.tar.bz2 |
More test_logging coverage improvements.
Diffstat (limited to 'Lib/logging/__init__.py')
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index eb1f934..cd640bb 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -890,7 +890,7 @@ class Handler(Filterer): None, sys.stderr) sys.stderr.write('Logged from file %s, line %s\n' % ( record.filename, record.lineno)) - except IOError: + except IOError: #pragma: no cover pass # see issue 5971 finally: del ei |