Commit a863270f authored by Tim Peters's avatar Tim Peters

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

parent 72118e5b
...@@ -190,9 +190,9 @@ class build_py (Command): ...@@ -190,9 +190,9 @@ class build_py (Command):
if not os.path.isfile(module_file): if not os.path.isfile(module_file):
self.warn("file %s (for module %s) not found" % self.warn("file %s (for module %s) not found" %
(module_file, module)) (module_file, module))
return False return 0
else: else:
return True return 1
# check_module () # check_module ()
......
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