diff options
| author | Tim Peters <tim.peters@gmail.com> | 2002-04-04 22:55:58 +0000 |
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2002-04-04 22:55:58 +0000 |
| commit | fd007b43987507a5ef19f1ba2d9037d1aebf6c4d (patch) | |
| tree | 0d2f0d27d15b13c68065e7b534df322244066c72 /command/build_py.py | |
| parent | 3f2880bde5a24637ed8dc9e8b534d3855705673c (diff) | |
| download | python-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.py | 4 |
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 () |
