Removed spurious print statement in test.

This commit is contained in:
Vinay Sajip 2010-02-08 06:50:14 +00:00
parent 9e483ef66d
commit 7ed8001862
1 changed files with 0 additions and 1 deletions

View File

@ -1638,7 +1638,6 @@ class ManagerTest(BaseTest):
self.assertRaises(TypeError, man.setLoggerClass, int)
man.setLoggerClass(MyLogger)
logger = man.getLogger('test')
print >> open('/tmp/tmp.txt', 'w'), type(logger)
logger.warning('should appear in logged')
logging.warning('should not appear in logged')