diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2008-09-09 13:42:08 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2008-09-09 13:42:08 (GMT) |
commit | 844f741039ada0cc0658beae40c2769c9c2cb5d5 (patch) | |
tree | 941b43394d4d39c2e5e58a6ce9615b50473edca1 /Lib/test | |
parent | d3ffb8974f85618dfbaacf2d10a32dc0e96f2f3d (diff) | |
download | cpython-844f741039ada0cc0658beae40c2769c9c2cb5d5.zip cpython-844f741039ada0cc0658beae40c2769c9c2cb5d5.tar.gz cpython-844f741039ada0cc0658beae40c2769c9c2cb5d5.tar.bz2 |
Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_logging.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 5d2b5fd..e837d41 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -615,10 +615,10 @@ class ConfigFileTest(BaseTest): args=(sys.stdout,) [handler_hand2] - class=FileHandler + class=StreamHandler level=NOTSET formatter=form1 - args=('test.blah', 'a') + args=(sys.stderr,) [formatter_form1] format=%(levelname)s ++ %(message)s |