Commit fd007b43 authored by Tim Peters's avatar Tim Peters

Convert a pile of obvious "yes/no" functions to return bool.

parent 3f2880bd
......@@ -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 0
return False
else:
return 1
return True
# 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