From: Ben Darnell Date: Tue, 8 Dec 2015 05:14:38 +0000 (-0500) Subject: Fix logging when running tests with twisted installed. X-Git-Tag: v4.4.0b1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35448d870c5a47f5e3fbab008159362f4699e4cb;p=thirdparty%2Ftornado.git Fix logging when running tests with twisted installed. --- diff --git a/tornado/test/twisted_test.py b/tornado/test/twisted_test.py index 1cff30ecb..ed234c460 100644 --- a/tornado/test/twisted_test.py +++ b/tornado/test/twisted_test.py @@ -686,7 +686,7 @@ if have_twisted: except ImportError: pass else: - globalLogBeginner.beginLoggingTo([]) + globalLogBeginner.beginLoggingTo([], redirectStandardIO=False) if have_twisted: class LayeredTwistedIOLoop(TwistedIOLoop):