3.12: Fixed test command

This commit is contained in:
enkore 2013-03-23 22:05:46 +01:00
parent c5413c4243
commit d2f6dd97a5

View File

@ -58,7 +58,7 @@ class Config:
sys.stdout.write("{module}: ".format(module=module.__name__)) sys.stdout.write("{module}: ".format(module=module.__name__))
sys.stdout.flush() sys.stdout.flush()
test = module.test() test = module.test()
if test: if test is not True:
print("\n\t", test) print("\n\t", test)
continue continue
module.run() module.run()