diff options
| author | Tim Peters <tim.peters@gmail.com> | 2002-04-04 23:17:31 +0000 |
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2002-04-04 23:17:31 +0000 |
| commit | 2b6ab4d227f851daa1f17389e45bc5456c3211e6 (patch) | |
| tree | c5a44a00eb1d89c7f6c2cfd968e37e9fe33e6d7b /command/build_py.py | |
| parent | fd007b43987507a5ef19f1ba2d9037d1aebf6c4d (diff) | |
| download | python-setuptools-git-2b6ab4d227f851daa1f17389e45bc5456c3211e6.tar.gz | |
Revert 0/1 -> False/True change; I didn't intend to muck w/ distutils.
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 453ca97a..97d094b1 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 False + return 0 else: - return True + return 1 # check_module () |
