summaryrefslogtreecommitdiff
path: root/command/build_py.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-04-04 22:55:58 +0000
committerTim Peters <tim.peters@gmail.com>2002-04-04 22:55:58 +0000
commitfd007b43987507a5ef19f1ba2d9037d1aebf6c4d (patch)
tree0d2f0d27d15b13c68065e7b534df322244066c72 /command/build_py.py
parent3f2880bde5a24637ed8dc9e8b534d3855705673c (diff)
downloadpython-setuptools-git-fd007b43987507a5ef19f1ba2d9037d1aebf6c4d.tar.gz
Convert a pile of obvious "yes/no" functions to return bool.
Diffstat (limited to 'command/build_py.py')
-rw-r--r--command/build_py.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/command/build_py.py b/command/build_py.py
index 97d094b1..453ca97a 100644
--- a/command/build_py.py
+++ b/command/build_py.py
@@ -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 ()