Remove a debugging print statement that accidentally got left in.

This commit is contained in:
Brett Cannon 2009-01-19 07:07:58 +00:00
parent b4a1b8c541
commit d994864d54
1 changed files with 0 additions and 1 deletions

View File

@ -17,7 +17,6 @@ def test_suite(package=__package__, directory=os.path.dirname(__file__)):
suite.addTest(module_tests)
elif os.path.isdir(path):
package_name = "{0}.{1}".format(package, name)
print(package_name)
__import__(package_name, level=0)
package_tests = getattr(sys.modules[package_name], 'test_suite')()
suite.addTest(package_tests)