Revert 0/1 -> False/True change; I didn't intend to muck w/ distutils.

This commit is contained in:
Tim Peters 2002-04-04 23:17:31 +00:00
parent 72118e5bc7
commit a863270f04

View file

@ -190,9 +190,9 @@ class build_py (Command):
if not os.path.isfile(module_file):
self.warn("file %s (for module %s) not found" %
(module_file, module))
return False
return 0
else:
return True
return 1
# check_module ()