Commit 7ed80018 authored by Vinay Sajip's avatar Vinay Sajip

Removed spurious print statement in test.

parent 9e483ef6
...@@ -1638,7 +1638,6 @@ class ManagerTest(BaseTest): ...@@ -1638,7 +1638,6 @@ class ManagerTest(BaseTest):
self.assertRaises(TypeError, man.setLoggerClass, int) self.assertRaises(TypeError, man.setLoggerClass, int)
man.setLoggerClass(MyLogger) man.setLoggerClass(MyLogger)
logger = man.getLogger('test') logger = man.getLogger('test')
print >> open('/tmp/tmp.txt', 'w'), type(logger)
logger.warning('should appear in logged') logger.warning('should appear in logged')
logging.warning('should not appear in logged') logging.warning('should not appear in logged')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment